hrms-api-backend/BMA.EHR.Application/Responses/Profiles/GetRootOCIdResultDto.cs
Suphonchai Phoonsawat 1ae6f5e8d1 fix api
2024-06-20 13:37:25 +07:00

11 lines
255 B
C#

namespace BMA.EHR.Application.Responses.Profiles
{
public class GetRootOCIdResultDto
{
public string Message { get; set; } = string.Empty;
public int Status { get; set; } = -1;
public Guid Result { get; set; }
}
}