ComplianceServer/oldcode/Core.DTO/Api/ApiResult.cs

11 lines
243 B
C#

namespace CRM.Core.DTO.Api
{
public class ApiResult
{
public bool result { get; set; }
public int retcode { get; set; }
public string retmsg { get; set; }
public dynamic retData { get; set; }
}
}