using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class LogicCatalogExItemsLogicDto:LogicCatalogLogicDto
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public LogicCatalogExItemsLogicDto() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public LogicCatalogExItemsLogicDto(Model.LogicCatalog rhs, IEnumerable<LogicTreeItemDto> items = null) :base(rhs)
|
{
|
this.Items = items?.ToList();
|
}
|
|
/// <summary>
|
/// 子项集合
|
/// </summary>
|
public List<LogicTreeItemDto> Items { get; set; }
|
|
|
}
|
}
|