AkiraPixelWind/LubanTools/Luban.ClientServer/Templates/db/cs_async/tables.tpl
2022-12-29 18:20:40 +08:00

17 lines
356 B
Smarty

using Bright.Serialization;
namespace {{namespace}}
{
public static class {{name}}
{
public static System.Collections.Generic.List<BrightDB.Transaction.TxnTable> TableList { get; } = new System.Collections.Generic.List<BrightDB.Transaction.TxnTable>
{
{{~ for table in tables~}}
{{table.full_name}}.Table,
{{~end}}
};
}
}