Files
myoffice/MyOffice.Web/Models/Account/AccountCategoryViewModel.cs
T
2023-07-29 16:25:16 +03:00

16 lines
359 B
C#

namespace MyOffice.Web.Models.Account;
using MyOffice.Core.Attributes;
using MyOffice.Services.Account.Domain;
using System.ComponentModel.DataAnnotations;
[Link(typeof(AccountCategoryDto))]
public class AccountCategoryViewModel
{
public string? Id { get; set; }
[Required]
public string? Name { get; set; }
public bool? AllowDelete { get; set; }
}