namespace IStation.Application.SZJT
{
///
///
///
public class LogicTreeStdDto : LogicTreeItemDto
{
///
///
///
public LogicTreeStdDto() { this.Children = new List(); }
///
///
///
public LogicTreeStdDto(Model.LogicTreeEx rhs) : base(rhs)
{
this.Children = new List();
}
///
///
///
public List Children { get; set; }
}
}