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; } }