Files
myoffice/MyOffice.Web/Models/Account/AccountEditRequestModel.cs
2023-07-23 20:27:23 +03:00

14 lines
358 B
C#

namespace MyOffice.Web.Models.Account;
using System.ComponentModel.DataAnnotations;
public class AccountEditRequestModel
{
[Required]
public string Name { get; set; } = null!;
[Required]
public string CurrencyId { get; set; } = null!;
public string? CategoryId { get; set; }
public string? UserId { get; set; }
public string? Type { get; set; }
}