MyBookmark/Modules.Library.Application/Models/Language.cs
THE_KONDRAT bad2805994 title modification
tried to add some ui
2024-09-24 19:44:54 +03:00

15 lines
363 B
C#

using System.ComponentModel.DataAnnotations;
namespace Modules.Library.Application.Models;
public class Language
{
public Guid Id { get; set; }
[Required]
public string CodeIso3 { get; set; } = default!;
[Required]
public string Name { get; set; } = default!;
public Guid? IconId { get; set; }
public bool Deleted { get; set; }
}