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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Swift.DAL.Remittance.CustomerReceivers
  6. {
  7. public class ReceiverModel
  8. {
  9. public Int64 ReceiverId { get; set; }
  10. public Int64 CustomerId { get; set; }
  11. public string MembershipId { get; set; }
  12. public string FirstName { get; set; }
  13. public string MiddleName { get; set; }
  14. public string LastName { get; set; }
  15. public string SecondLastName { get; set; }
  16. public string State { get; set; }
  17. public string City { get; set; }
  18. public string Address { get; set; }
  19. public string zipCode { get; set; }
  20. public string Relation { get; set; }
  21. public string TelephoneNo { get; set; }
  22. public string MobileNo { get; set; }
  23. public string Email { get; set; }
  24. public string Country { get; set; }
  25. }
  26. }