Newer
Older
GHFX_REFACTOR / LayerChild.cs
wxn on 2 Nov 2016 485 bytes 提交
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;
        }
    }
}