| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- using Luban;
- using SimpleJSON;
- namespace cfg
- {
- public partial struct SubTabParam
- {
- public SubTabParam(JSONNode _buf)
- {
- { if(!_buf["Name"].IsString) { throw new SerializationException(); } Name = _buf["Name"]; }
- { if(!_buf["Num"].IsNumber) { throw new SerializationException(); } Num = _buf["Num"]; }
- { if(!_buf["View"].IsString) { throw new SerializationException(); } View = _buf["View"]; }
- }
- public static SubTabParam DeserializeSubTabParam(JSONNode _buf)
- {
- return new SubTabParam(_buf);
- }
- public readonly string Name;
- public readonly int Num;
- public readonly string View;
-
- public void ResolveRef(Tables tables)
- {
- }
- public override string ToString()
- {
- return "{ "
- + "Name:" + Name + ","
- + "Num:" + Num + ","
- + "View:" + View + ","
- + "}";
- }
- }
- }
|