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.

InsuranceCompanyMongo.cs 466B

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