using System; using System.Collections.Generic; using CompanyManagment.App.Contracts.Employee; using CompanyManagment.App.Contracts.Job; namespace CompanyManagment.App.Contracts.CrossJobGuild; public class CrossJobGuildViewModel { public long Id { get; set; } public int Year { get; set; } public string Title { get; set; } public string EconomicCode { get; set; } public List jobs { get; set; } }