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
428 B

using Common.Models.RequestResponse;
namespace Common.Models.Status
{
public class GetStatus : CommonRequest
{
public string ControlNo { get; set; }
public string PartnerPinNo { get; set; }
public bool IsFromPartnerPinNo { get; set; }
public string PaymentMethod { get; set; }
public string PostedDateFrom { get; set; }
public string PostedDateTo { get; set; }
}
}