MyBookmark/Modules.Library.Application/Models/Description.cs
2024-09-23 03:00:50 +03:00

11 lines
303 B
C#

using System.ComponentModel.DataAnnotations;
namespace Modules.Library.Application.Models;
public class Description
{
[Required]
public string Value { get; set; } = string.Empty;
public bool IsOriginal { get; set; }
[Required]
public Language Language { get; set; } = default!;
}