// ---------------------------------------- // // MADE BY GENERATOR AT <%-time%>, // PLEASE DO NOT REWRITE. // // ---------------------------------------- using GameFramework.Net; using System.Collections.Generic; using <%-namespace%>; namespace <%-namespace%>.<%-fn%> { <%_ for(let node of list) { _%> <%_ if(node.req) { _%> <%_ if(node.req.comment != '') {_%> /// /// <%-node.req.comment%> /// <%_}_%> [RequestMsg(URL = "<%-node.mod%>/<%-node.name%>")] public class <%-node.upperName%>Request { <%_ for(let v of node.req.args) {_%> <%_ if(v.comment != '') {_%> /// /// <%-v.comment%> /// <%_}_%> public <%-v.type%> <%-v.name%> = <%-v.value%>; <%_}_%> } <%_}_%> <%_ if(node.res) {_%> <%_ if(node.res.comment != '') {_%> /// /// <%-node.res.comment%> /// <%_}_%> public class <%-node.upperName%>Response { <%_ for(let v of node.res.args) {_%> <%_ if(v.comment != '') {_%> /// /// <%-v.comment%> /// <%_}_%> public <%-v.type%> <%-v.name%> = <%-v.value%>; <%_}_%> } <%_}_%> <%_}_%> }