using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 业务类别拓展逻辑树项集合 /// public class LogicCatalogExLogicalTreeItemsLogicDto : LogicCatalogLogicDto { /// /// /// public LogicCatalogExLogicalTreeItemsLogicDto() { } /// /// /// public LogicCatalogExLogicalTreeItemsLogicDto(Model.LogicCatalog rhs, IEnumerable items = null) : base(rhs) { this.Items = items?.ToList(); } /// /// 逻辑树项集合 /// public List Items { get; set; } } }