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.
 
 

29 lines
1.1 KiB

using Common.Models.RequestResponse;
namespace Common.Models.Sender
{
public class SenderRequest : CommonRequest
{
public int SenderId { get; set; }
public string LoyaltyCardNumber { get; set; }
public string Name { get; set; }
public string NameOtherLanguage { get; set; }
public string Address { get; set; }
public string AddressOtherLanguage { get; set; }
public string PhoneMobile { get; set; }
public string PhoneHome { get; set; }
public string PhoneWork { get; set; }
public string ZipCode { get; set; }
public string RCityCode { get; set; }
public string StateId { get; set; }
public string CountryIsoCode { get; set; }
public string TypeOfId { get; set; }
public string IdNumber { get; set; }
public string IdExpiryDate { get; set; }
public string NationalityIsoCode { get; set; }
public string DateOfBirth { get; set; }
public string Email { get; set; }
public bool IsIndividual { get; set; }
public string MethodType { get; set; }
}
}