hrms-api-backend/BMA.EHR.Retirement.Service/Requests/PeriodRequest.cs

14 lines
343 B
C#
Raw Permalink Normal View History

2023-08-03 10:06:33 +07:00
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.Service.Requests
{
public class PeriodRequest
{
public Guid? RetireHistoryId { get; set; }
public string? Option { get; set; }
public string Type { get; set; }
public int Year { get; set; }
}
}