using System; using System.Collections.Generic; using System.Text; namespace Infrastructure.Api { public class CommonResponseWithData : CommonResponse where T:new() { public T Data { get; set; } } public class CommonResponse { public string Code { get; set; } public bool Success { get; set; } public string Message { get; set; } } }