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
|
|
|
|
|
|
{
|
2023-08-23 20:30:30 +07:00
|
|
|
|
public string? Name { get; set; }
|
2023-07-19 10:25:54 +07:00
|
|
|
|
|
|
|
|
|
|
public int Year { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime EndDate { get; set; }
|
|
|
|
|
|
|
2023-08-18 02:25:07 +07:00
|
|
|
|
public int Amount { get; set; }
|
2023-07-19 10:25:54 +07:00
|
|
|
|
|
2023-08-18 02:25:07 +07:00
|
|
|
|
public int Round { get; set; }
|
2025-01-27 10:14:54 +07:00
|
|
|
|
public string[] EmpPosId { get; set; }
|
2023-08-04 16:17:57 +07:00
|
|
|
|
public FormFile? File { get; set; }
|
2023-07-19 10:25:54 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|