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