change report templates (transfer, retire)

This commit is contained in:
Bright 2024-09-12 10:54:23 +07:00
parent f85c0cf636
commit d67e0450e5
5 changed files with 453 additions and 354 deletions

View file

@ -0,0 +1,13 @@
namespace BMA.EHR.Application.Responses
{
public class ProfileRetireJsonRequest
{
public string? order { get; set; }
public string? fullName { get; set; }
public string? position { get; set; }
public string? posNo { get; set; }
public string? root { get; set; }
public string? reason { get; set; }
}
}