fix bug and add approver position

This commit is contained in:
Suphonchai Phoonsawat 2023-08-18 10:53:44 +07:00
parent 4215af4a0b
commit cc902536d6
4 changed files with 37 additions and 10 deletions

View file

@ -0,0 +1,11 @@
namespace BMA.EHR.Application.Responses
{
public class OrganizationApproverResponse
{
public Guid Id { get; set; } = Guid.Empty;
public string Name { get; set; } = string.Empty;
public string PositionName { get; set; } = string.Empty;
}
}