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.

38 lines
888 B

1 year ago
  1. using System.ComponentModel.DataAnnotations;
  2. namespace Common.Model
  3. {
  4. public class ReceiverModel
  5. {
  6. public string Id { get; set; }
  7. [Required]
  8. public string FirstName { get; set; }
  9. public string MiddleName { get; set; }
  10. public string LastName { get; set; }
  11. [Required]
  12. public string Country { get; set; }
  13. public string State { get; set; }
  14. public string District { get; set; }
  15. public string Address { get; set; }
  16. [Required]
  17. public string Relation { get; set; }
  18. [Required]
  19. public string MobileNo { get; set; }
  20. public string City { get; set; }
  21. public string Email { get; set; }
  22. public string IdType { get; set; }
  23. public string IdNumber { get; set; }
  24. [Required]
  25. public string TransferReason { get; set; }
  26. }
  27. }