Newer
Older
EMS_SZ / PipelineType.cs
root on 21 Mar 2016 458 bytes first
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Cyberpipe
{
    public class PipelineType
    {
        public string code = "";
        public string name = "";
        public string type = "";

        public PipelineType() { }
        public PipelineType(string _code, string _name, string _type)
        {
            code = _code;
            name = _name;
            type = _type;
        }
    }
}