hrms-api-backend/BMA.EHR.Application/Requests/InsigniaManageRequest.cs

14 lines
329 B
C#
Raw Normal View History

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