Newer
Older
GHFX_REFACTOR / ShResult.cs
xiaowei on 18 Nov 2016 308 bytes 重构一键审核代码
namespace Cyberpipe
{
    class ShResult
    { 
        public string layerid;
        public string question;

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