19 lines
469 B
C#
19 lines
469 B
C#
using Luban.Job.Common.RawDefs;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Luban.Job.Db.RawDefs
|
|
{
|
|
public class Defines
|
|
{
|
|
public string TopModule { get; set; } = "";
|
|
|
|
public List<Bean> Beans { get; set; } = new List<Bean>();
|
|
|
|
public List<Const> Consts { get; set; } = new List<Const>();
|
|
|
|
public List<PEnum> Enums { get; set; } = new List<PEnum>();
|
|
|
|
public List<Table> DbTables { get; set; } = new List<Table>();
|
|
}
|
|
}
|