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.

14 lines
452 B

  1. namespace Swift.DAL.Common
  2. {
  3. public class BankSearchModel
  4. {
  5. public string User { get; set; }
  6. public string SearchType { get; set; }
  7. public string SearchValue { get; set; }
  8. public string PAgent { get; set; }
  9. public string PAgentType { get; set; }
  10. public string PCountryName { get; set; }
  11. public string PayoutPartner { get; set; }
  12. public string PaymentMode { get; set; }
  13. }
  14. }