- namespace Diligent.WebAPI.Host.MongoDTOs.InsurancePolicyMongo
- {
- public class InsurancePolicySaveDTO
- {
- public decimal Premium { get; set; }
- public DateTime StartDate { get; set; }
- public DateTime EndDate { get; set; }
- public string Type { get; set; }
- public string? InsurerId { get; set; }
- public string? InsuranceCompanyId { get; set; }
- }
- }
|