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.

InsurerMongo.cs 681B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Diligent.WebAPI.Data.Entities
  7. {
  8. public class InsurerMongo : BaseMongo
  9. {
  10. public string FirstName { get; set; }
  11. public string LastName { get; set; }
  12. public DateTime DateOfBirth { get; set; }
  13. public string PhoneNumber { get; set; }
  14. public string City { get; set; }
  15. public string Country { get; set; }
  16. public string PostalCode { get; set; }
  17. public string Address { get; set; }
  18. public string Email { get; set; }
  19. public string? InsuranceCompanyId { get; set; }
  20. }
  21. }