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.
 
 

31 lines
1.0 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Models.TxnAmendModel
{
public class TxnAmendSender
{
public string SAddress { get; set; }
public string SMobile { get; set; }
public string STel { get; set; }
public string SCityId { get; set; }
public string SCity { get; set; }
public string SState { get; set; }
public int SCountryId { get; set; }
public string SCountryName { get; set; }
public string SZipCode { get; set; }
public string SEmail { get; set; }
public string SIdType { get; set; }
public string SIdNo { get; set; }
public string SIdIssueDate { get; set; }
public string SIdExpiryDate { get; set; }
public string SNativeCountry { get; set; }
public string SOccuptionId { get; set; }
public string SOccuptionName { get; set; }
public string SBirthDate { get; set; }
public bool IsIndividual { get; set; }
}
}