14 lines
343 B
C#
14 lines
343 B
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|