11 lines
229 B
C#
11 lines
229 B
C#
|
|
using Microsoft.AspNetCore.Http;
|
|||
|
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|||
|
|
{
|
|||
|
|
public class PlacementRepatriationDateRequest
|
|||
|
|
{
|
|||
|
|
public DateTime? Date { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|