Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 1234567891011121314 |
- namespace Diligent.WebAPI.Contracts.DTOs.InsurancePolicy
- {
- public class InsurancePolicyViewDto
- {
- public int Id { get; set; }
- public decimal Premium { get; set; }
- public DateTime StartDate { get; set; }
- public DateTime EndDate { get; set; }
- public string Type { get; set; }
-
- //public long InsurerId { get; set; }
- //public virtual Insurer Insurer { get; set; }
- }
- }
|