using System.Collections.Generic; namespace Transfast.Model.Payers { public class PayerDetailsResults { public int BranchInternalCode { get; set; } public int PayerInternalCode { get; set; } public int ThirdPayerId { get; set; } public bool IsAnywhere { get; set; } public bool IsDefaultLocation { get; set; } public int DefaultLocation { get; set; } public string PayerId { get; set; } public string PayerName { get; set; } public string BranchId { get; set; } public string BranchName { get; set; } public string BranchAddress { get; set; } public string BankId { get; set; } public string BankName { get; set; } public string NeedBank { get; set; } public decimal CustomerRate { get; set; } public bool BranchLevelRate { get; set; } public bool IsOldPayer { get; set; } } public class TFPayerMasterResults { public int PayerInternalCode { get; set; } public string PayerName { get; set; } public decimal CustomerRate { get; set; } public bool IsThirdParty { get; set; } public bool IsAnywhere { get; set; } public string Label { get; set; } public List PayerDetailsResults { get; set; } } public class _MasterResults { public List MasterPayerResults { get; set; } public int TotalCount { get; set; } } }