hrms-api-backend/BMA.EHR.Application/Responses/Profiles/GetUserOCIdResultDto.cs

12 lines
266 B
C#
Raw Permalink Normal View History

2024-06-20 13:37:25 +07:00
namespace BMA.EHR.Application.Responses.Profiles
{
public class GetUserOCIdResultDto
{
public string Message { get; set; } = string.Empty;
public int Status { get; set; } = -1;
public GetUserOCIdDto? Result { get; set; }
}
}