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.

13 lines
457 B

  1. namespace Transfast.Model.Payers
  2. {
  3. public class TFPayersResponse
  4. {
  5. public string PayerId { get; set; }
  6. public string PayerName { get; set; }
  7. public string BranchId { get; set; }
  8. public string BranchName { get; set; }
  9. public string BranchAddress { get; set; }
  10. public string NeedBank { get; set; }
  11. public decimal CustomerRate { get; set; }
  12. public bool IsAnywhere { get; set; }
  13. }
  14. }