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.

41 lines
1.5 KiB

  1. using System.Collections.Generic;
  2. namespace Transfast.Model.Payers
  3. {
  4. public class PayerDetailsResults
  5. {
  6. public int BranchInternalCode { get; set; }
  7. public int PayerInternalCode { get; set; }
  8. public int ThirdPayerId { get; set; }
  9. public bool IsAnywhere { get; set; }
  10. public bool IsDefaultLocation { get; set; }
  11. public int DefaultLocation { get; set; }
  12. public string PayerId { get; set; }
  13. public string PayerName { get; set; }
  14. public string BranchId { get; set; }
  15. public string BranchName { get; set; }
  16. public string BranchAddress { get; set; }
  17. public string BankId { get; set; }
  18. public string BankName { get; set; }
  19. public string NeedBank { get; set; }
  20. public decimal CustomerRate { get; set; }
  21. public bool BranchLevelRate { get; set; }
  22. public bool IsOldPayer { get; set; }
  23. }
  24. public class TFPayerMasterResults
  25. {
  26. public int PayerInternalCode { get; set; }
  27. public string PayerName { get; set; }
  28. public decimal CustomerRate { get; set; }
  29. public bool IsThirdParty { get; set; }
  30. public bool IsAnywhere { get; set; }
  31. public string Label { get; set; }
  32. public List<PayerDetailsResults> PayerDetailsResults { get; set; }
  33. }
  34. public class _MasterResults
  35. {
  36. public List<TFPayerMasterResults> MasterPayerResults { get; set; }
  37. public int TotalCount { get; set; }
  38. }
  39. }