10 lines
238 B
C#
10 lines
238 B
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
|
{
|
|
public class RetirementQuestionAppointRequest
|
|
{
|
|
public DateTime AppointDate { get; set; }
|
|
}
|
|
}
|