14 lines
358 B
C#
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; }
|
|
} |