11 lines
284 B
C#
Raw Permalink Normal View History

2025-06-06 16:00:39 +08:00
namespace VOL.Core.Utilities.Response
{
public class ApiResponse<T>
{
public int Status { get; set; }
public bool Success { get; set; }
public int Code { get; set; }
public string Msg { get; set; }
public T Data { get; set; }
}
}