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.
 
 

16 lines
497 B

using Common.Models.RequestResponse;
namespace Common.Models.Address
{
public class AddressRequest : CommonRequest
{
public string CountryIsoCode { get; set; }
public string StateId { get; set; }
public string CityName { get; set; }
public int StartIndex { get; set; }
public int PageSize { get; set; }
public string CityId { get; set; }
public string TownName { get; set; }
public string MethodType { get; set; }
}
}