using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CompanyManagment.App.Contracts.InsuranceJobItem; namespace CompanyManagment.App.Contracts.InsuranceJob; public class InsuranceJobViewModel { public long Id { get; set; } public string InsuranceJobTitle { get; set; } //public long YearlySalaryId { get; set; } public string EconomicCode { get; set; } public string Year { get; set; } public string Month { get; set; } public List InsuranceJobItemViewModels { get; set; } }