//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
using Luban;
namespace cfg
{
public sealed partial class Language : Luban.BeanBase
{
public Language(ByteBuf _buf)
{
Id = _buf.ReadString();
CN = _buf.ReadString();
EN = _buf.ReadString();
}
public static Language DeserializeLanguage(ByteBuf _buf)
{
return new Language(_buf);
}
///
/// id
///
public readonly string Id;
///
/// 中文
///
public readonly string CN;
///
/// 英文
///
public readonly string EN;
public const int __ID__ = -1548945544;
public override int GetTypeId() => __ID__;
public void ResolveRef(Tables tables)
{
}
public override string ToString()
{
return "{ "
+ "id:" + Id + ","
+ "CN:" + CN + ","
+ "EN:" + EN + ","
+ "}";
}
}
}