NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Common/ApiResponse.cs
2026-06-15 16:41:50 +08:00

16 lines
337 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.Common
{
public class ApiResponse<T>
{
public bool success { get; set; }
public string? message { get; set; }
public T? data { get; set; }
}
}