您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

InsuranceCompany.cs 410B

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