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.

22 lines
652 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Swift.API.Common
  7. {
  8. public class CustomerDetails
  9. {
  10. public string FullName { get; set; }
  11. public int CustomerId { get; set; }
  12. public string MembershipId { get; set; }
  13. public string FirstName { get; set; }
  14. public string MiddleName { get; set; }
  15. public string LastName { get; set; }
  16. public string Mobile { get; set; }
  17. public string Address { get; set; }
  18. public string Email { get; set; }
  19. public string RegisteredDate { get; set; }
  20. }
  21. }