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.
 
 

28 lines
902 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Transfast.Model.Receiver
{
public class ReceiverAmendRequest
{
public string CompleteAddress { get; set; }
public string CompleteAddressOtherLanguage { get; set; }
public string MobilePhone { get; set; }
public string HomePhone { get; set; }
public string WorkPhone { get; set; }
public string Email { get; set; }
public string Notes { get; set; }
public string NotesOtherLanguage { get; set; }
public string ReceiverIdNumber { get; set; }
public string ReceiverTypeOfId { get; set; }
public string FirstName { get; set; }
public string SecondName { get; set; }
public string LastName { get; set; }
public string SecondLastName { get; set; }
}
}