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.

27 lines
961 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Swift.API.Common.SendTxn
  6. {
  7. public class TxnAgent
  8. {
  9. public int SAgentId { get; set; }
  10. public string SAgentName { get; set; }
  11. public int SSuperAgentId { get; set; }
  12. public string SSuperAgentName { get; set; }
  13. public string AgentRefId { get; set; }
  14. public string PBranchId { get; set; }
  15. public string PBranchName { get; set; }
  16. public string PBranchCity { get; set; }
  17. public int PAgentId { get; set; }
  18. public string PAgentName { get; set; }
  19. public int SBranchId { get; set; }
  20. public string SBranchName { get; set; }
  21. public string PBankType { get; set; }
  22. public string PBankId { get; set; }
  23. public string PBankName { get; set; }
  24. public string PBankBranchId { get; set; }
  25. public string PBankBranchName { get; set; }
  26. }
  27. }