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.

12345678910111213
  1. namespace Diligent.WebAPI.Data.Entities;
  2. public class InsuranceCompany : Base
  3. {
  4. public string Name { get; set; }
  5. public string PhoneNumber { get; set; }
  6. public string Fax { get; set; }
  7. public string City { get; set; }
  8. public string Country { get; set; }
  9. public string PostalCode { get; set; }
  10. public string LegalAddress { get; set; }
  11. public string LegalEmail { get; set; }
  12. }