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.

InsurancePolicySaveDTO.cs 404B

123456789101112
  1. namespace Diligent.WebAPI.Host.MongoDTOs.InsurancePolicyMongo
  2. {
  3. public class InsurancePolicySaveDTO
  4. {
  5. public decimal Premium { get; set; }
  6. public DateTime StartDate { get; set; }
  7. public DateTime EndDate { get; set; }
  8. public string Type { get; set; }
  9. public string? InsurerId { get; set; }
  10. public string? InsuranceCompanyId { get; set; }
  11. }
  12. }