Files
2024-07-05 21:36:15 +03:30

16 lines
437 B
C#

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<JobViewModel> jobs { get; set; }
}