2023-08-25 18:18:28 +07:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Application.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class InsigniaBorrowRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public DateTime BorrowDate { get; set; }
|
2023-10-24 18:52:49 +07:00
|
|
|
|
public Guid? BorrowOrganizationId { get; set; }
|
2023-08-25 18:18:28 +07:00
|
|
|
|
public Guid InsigniaNoteProfileId { get; set; }
|
|
|
|
|
|
}
|
2025-05-07 11:51:19 +07:00
|
|
|
|
|
|
|
|
|
|
public class InsigniaReclaimRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public DateTime ReclaimDate { get; set; }
|
|
|
|
|
|
public Guid InsigniaNoteProfileId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? ReclaimNote { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class UpdateInsigniaReclaimRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public DateTime ReclaimDate { get; set; }
|
|
|
|
|
|
public string? ReclaimNote { get; set; }
|
|
|
|
|
|
}
|
2023-08-25 18:18:28 +07:00
|
|
|
|
}
|