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.

InsurancePolicyCreateDto.cs 298B

12345678910
  1. namespace Diligent.WebAPI.Contracts.DTOs.InsurancePolicy
  2. {
  3. public class InsurancePolicyCreateDto
  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. }
  10. }