14 lines
376 B
C#
14 lines
376 B
C#
namespace Modules.Library.Core.Domain.MediaContent.CommonProperties;
|
|
public class DescriptionItem : Entity
|
|
{
|
|
[Required]
|
|
public string Value { get; private set; } = string.Empty;
|
|
public bool IsOriginal { get; init; }
|
|
[Required]
|
|
public Guid LanguageId { get; init; } = default!;
|
|
|
|
public void SetValue(string value)
|
|
{
|
|
Value = value;
|
|
}
|
|
} |