選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

InsuranceCompanyCreateDTO.cs 482B

1234567891011121314
  1. namespace Diligent.WebAPI.Host.MongoDTOs.InsuranceCompanyMongo
  2. {
  3. public class InsuranceCompanyCreateDTO
  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. }