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

InsurerSaveDTO.cs 629B

123456789101112131415161718
  1. using Diligent.WebAPI.Host.MongoDTOs.InsuranceCompanyMongo;
  2. namespace Diligent.WebAPI.Host.MongoDTOs.InsurerMongo
  3. {
  4. public class InsurerSaveDTO
  5. {
  6. public string FirstName { get; set; }
  7. public string LastName { get; set; }
  8. public DateTime DateOfBirth { get; set; }
  9. public string PhoneNumber { get; set; }
  10. public string City { get; set; }
  11. public string Country { get; set; }
  12. public string PostalCode { get; set; }
  13. public string Address { get; set; }
  14. public string Email { get; set; }
  15. public string? InsuranceCompanyId { get; set; }
  16. }
  17. }