public partial interface IClient
{
System.Threading.Tasks.Task<AccountEntityListResult> AccountsGetAsync(bool showInactive)
}
public partial class AccountEntityListResult
{
public bool IsSuccess { get; set; }
public string Message { get; set; }
public string Error { get; set; }
public System.Collections.Generic.ICollection<AccountEntity> Obj { get; set; }
}
public partial interface IClient
{
System.Threading.Tasks.Task<AccountEntityListResult> AccountsGetAsync(bool showInactive)
}
public partial class AccountEntityListResult
{
public bool IsSuccess { get; set; }
public string Message { get; set; }
public string Error { get; set; }
public System.Collections.Generic.ICollection<AccountEntity> Obj { get; set; }
}