16 lines
375 B
C#
16 lines
375 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: IResponseModel
|
|
{
|
|
public string? Id { get; set; }
|
|
|
|
[Required]
|
|
public string? Name { get; set; }
|
|
|
|
public bool? AllowDelete { get; set; }
|
|
} |