using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Cyberpipe { public class LayerChild { public string attriLabel; public string attriLayer; public string attriType; public LayerChild() { } public LayerChild(string label, string layerName, string type) { attriLabel = label; attriLayer = layerName; attriType = type; } } }