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.
 
 
 
 
 

27 lines
911 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Swift.DAL.Remittance.CustomerReceivers
{
public class ReceiverModel
{
public Int64 ReceiverId { get; set; }
public Int64 CustomerId { get; set; }
public string MembershipId { get; set; }
public string FirstName { get; set; }
public string MiddleName { get; set; }
public string LastName { get; set; }
public string SecondLastName { get; set; }
public string State { get; set; }
public string City { get; set; }
public string Address { get; set; }
public string zipCode { get; set; }
public string Relation { get; set; }
public string TelephoneNo { get; set; }
public string MobileNo { get; set; }
public string Email { get; set; }
public string Country { get; set; }
}
}