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.

InsurancePolicyMongo.cs 353B

1234567891011
  1. namespace Diligent.WebAPI.Data.Entities;
  2. public class InsurancePolicyMongo : BaseMongo
  3. {
  4. public decimal Premium { get; set; }
  5. public DateTime StartDate { get; set; }
  6. public DateTime EndDate { get; set; }
  7. public string Type { get; set; }
  8. public string? InsurerId { get; set; }
  9. public string? InsuranceCompanyId { get; set; }
  10. }