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

11 lines
259 B
C#

using System.ComponentModel.DataAnnotations;
namespace Modules.Library.WebApi.Models.Dictionary;
public class Genre
{
public Guid Id { get; set; }
[Required]
public string Name { get; set; } = default!;
public bool Deleted { get; set; }
}