hrms-api-backend/BMA.EHR.Domain/Common/ResponseObject.cs

12 lines
187 B
C#
Raw Permalink Normal View History

2023-06-25 18:36:02 +07:00
namespace BMA.EHR.Domain.Common
{
public class ResponseObject
{
public int Status { get; set; }
public string? Message { get; set; }
public object? Result { get; set; }
}
}