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