22 lines
517 B
C#
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; }
|
|
}
|
|
}
|