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.

InsurerViewDto.cs 615B

123456789101112131415161718
  1. namespace Diligent.WebAPI.Contracts.DTOs.Insurer
  2. {
  3. public class InsurerViewDto
  4. {
  5. public long Id { get; set; }
  6. public string FirstName { get; set; }
  7. public string LastName { get; set; }
  8. public DateTime DateOfBirth { get; set; }
  9. public string PhoneNumber { get; set; }
  10. public string City { get; set; }
  11. public string Country { get; set; }
  12. public string PostalCode { get; set; }
  13. public string Address { get; set; }
  14. public string Email { get; set; }
  15. public InsuranceCompanyViewDto InsuranceCompany { get; set; }
  16. }
  17. }