12 lines
322 B
C#
12 lines
322 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Application.Requests
|
|
{
|
|
public class InsigniaReturnRequest
|
|
{
|
|
public DateTime ReturnDate { get; set; }
|
|
public Guid? ReturnOrganizationId { get; set; }
|
|
public string ReturnReason { get; set; }
|
|
}
|
|
}
|