hrms-api-backend/BMA.EHR.MetaData.Service/Response/GetOrganizationTypeResponse.cs
2024-12-21 01:11:42 +07:00

10 lines
183 B
C#

namespace BMA.EHR.MetaData.Service.Response
{
public class GetOrganizationTypeResponse
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
}
}