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