52 lines
1.2 KiB
C#
Raw Normal View History

2023-11-05 03:26:09 +08:00
//------------------------------------------------------------------------------
// <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 System.Text.Json;
namespace cfg.test
{
public abstract partial class DemoD3 : test.DemoDynamic
{
public DemoD3(JsonElement _buf) : base(_buf)
{
X3 = _buf.GetProperty("x3").GetInt32();
}
public static DemoD3 DeserializeDemoD3(JsonElement _buf)
{
switch (_buf.GetProperty("$type").GetString())
{
case "DemoE1": return new test.DemoE1(_buf);
case "test.login.RoleInfo": return new test.login.RoleInfo(_buf);
default: throw new SerializationException();
}
}
public readonly int X3;
public override void ResolveRef(Tables tables)
{
base.ResolveRef(tables);
}
public override string ToString()
{
return "{ "
+ "x1:" + X1 + ","
+ "x3:" + X3 + ","
+ "}";
}
}
}