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