Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }