11 lines
280 B
C#
11 lines
280 B
C#
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;
|
|
}
|
|
}
|