Files
Backend-Api/CompanyManagment.App.Contracts/ClassificationScheme/ClassificationSchemeListDto.cs
2026-01-04 15:35:06 +03:30

24 lines
572 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.ClassificationScheme;
/// <summary>
/// پارشیال صفحه ایجاد طرح
/// </summary>
public class ClassificationSchemeListDto
{
/// <summary>
/// آیا طرح دارد
/// </summary>
public bool HasScheme { get; set; }
/// <summary>
/// آی دی کارگاه
/// </summary>
public long WorkshopId { get; set; }
/// <summary>
/// لیست طرح
/// </summary>
public List<SchemeListDto> ClassificationSchemesList { get; set; }
}