21 lines
477 B
C#
21 lines
477 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 string Amount { get; set; }
|
|
|
|
// public string Type { get; set; }
|
|
public FormFile? File { get; set; }
|
|
}
|
|
}
|