10 lines
229 B
C#
10 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; }
|
|
}
|
|
}
|