hrms-api-backend/BMA.EHR.Application/Requests/InsigniaManageRequest.cs
2023-08-25 18:18:28 +07:00

13 lines
332 B
C#

using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Application.Requests
{
public class InsigniaManageRequest
{
public Guid Insignia { get; set; }
public int Year { get; set; }
public int Total { get; set; }
// public string Type { get; set; }
}
}