選択できるのは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. }