hrms-api-backend/BMA.EHR.Application/Requests/InsigniaPeriodRequest.cs
kittapath 87e8c17309
Some checks failed
release-dev / release-dev (push) Failing after 11s
ให้ออกลูกจ้าง
2025-01-27 10:14:54 +07:00

22 lines
517 B
C#

using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
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 int Amount { get; set; }
public int Round { get; set; }
public string[] EmpPosId { get; set; }
public FormFile? File { get; set; }
}
}