Files
Backend-Api/CompanyManagment.App.Contracts/ClassificationScheme/GetGroupAndJobSchemeListDto.cs
2026-01-04 19:13:46 +03:30

23 lines
506 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.ClassificationScheme;
public class GetGroupAndJobSchemeListDto
{
/// <summary>
/// آی دی گروه
/// </summary>
public long GroupId { get; set; }
/// <summary>
/// شماره گروه نوع عددی
/// </summary>
public int GroupNoInt { get; set; }
/// <summary>
/// آیا شغلی به گروه اضافه شده
/// </summary>
public bool HasAnyJob { get; set; }
}