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