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

12 lines
299 B
C#

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