namespace Diligent.WebAPI.Contracts.DTOs.InsurancePolicy { public class InsurancePolicyCreateDto { public decimal Premium { get; set; } public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } public string Type { get; set; } } }