hrms-api-backend/BMA.EHR.MetaData.Service/Response/GetOrganizationTypeResponse.cs

11 lines
183 B
C#
Raw Permalink Normal View History

2024-12-21 01:11:42 +07:00
namespace BMA.EHR.MetaData.Service.Response
{
public class GetOrganizationTypeResponse
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
}
}