no message

This commit is contained in:
Kittapath 2023-08-03 10:06:33 +07:00
parent 1e405e8958
commit 0bf0386863
3 changed files with 43 additions and 19 deletions

View file

@ -0,0 +1,13 @@
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; }
}
}