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.
 
 
 
 
 

20 lines
595 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Model.BankModel
{
public class BankSearchModel
{
public string User { get; set; }
public string SearchType { get; set; }
public string SearchValue { get; set; }
public string PAgent { get; set; }
public string PAgentType { get; set; }
public string PCountryName { get; set; }
public string PayoutPartner { get; set; }
public string PaymentMode { get; set; }
}
}