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

namespace Cyberpipe
{
    class ShResult
    { 
        public string layerid;
        public string question;

        public ShResult() { }
         

        public ShResult(string _layerid, string _question)
        {
            layerid = _layerid;
            question = _question;
        }
    }
}