Files
Backend-Api/CompanyManagment.App.Contracts/CrossJobGuild/CrossJobGuildSearchModel.cs
2024-07-05 21:36:15 +03:30

13 lines
347 B
C#

using System;
using System.Collections.Generic;
using CompanyManagment.App.Contracts.Employee;
namespace CompanyManagment.App.Contracts.CrossJobGuild;
public class CrossJobGuildSearchModel
{
public long id { get; set; }
public int Year { get; set; }
public string Title { get; set; }
public string EconomicCode { get; set; }
}