You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

42 lines
1.5 KiB

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> PayerDetailsResults { get; set; }
}
public class _MasterResults
{
public List<TFPayerMasterResults> MasterPayerResults { get; set; }
public int TotalCount { get; set; }
}
}