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

22 lines
477 B
C#
Raw Permalink Normal View History

2023-08-04 16:17:57 +07:00
using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
2023-07-19 10:25:54 +07:00
namespace BMA.EHR.Application.Requests
{
public class InsigniaPeriodRequest
{
public string Name { get; set; }
public int Year { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public string Amount { get; set; }
2023-08-04 16:17:57 +07:00
// public string Type { get; set; }
public FormFile? File { get; set; }
2023-07-19 10:25:54 +07:00
}
}