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

13 lines
342 B
C#

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