hrms-api-backend/BMA.EHR.Application/Requests/InsigniaReturnRequest.cs

13 lines
322 B
C#
Raw Permalink Normal View History

2023-08-25 18:18:28 +07:00
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; }
2023-08-25 18:18:28 +07:00
public string ReturnReason { get; set; }
}
}