Files
TechHelper/Entities/DTO/ApiResponse.cs
SpecialX e824c081bf change
2025-05-30 12:46:55 +08:00

27 lines
439 B
C#

namespace TechHelper.Services
{
public class ApiResponse
{
public ApiResponse(string message, bool status = false)
{
this.Message = message;
this.Status = status;
}
public ApiResponse(bool status, object result)
{
this.Status = status;
this.Result = result;
}
public ApiResponse()
{
}
public string Message { get; set; }
public bool Status { get; set; }
public object Result { get; set; }
}
}