using Luban.Job.Common.RawDefs; using System.Collections.Generic; namespace Luban.Job.Proto.RawDefs { public class Defines { public string Target { get; set; } = "*"; public string Language { get; set; } = "cs"; public string TopModule { get; set; } = ""; public List ProtoServices { get; set; } = new List(); public List Beans { get; set; } = new List(); public List Consts { get; set; } = new List(); public List Enums { get; set; } = new List(); public List Protos { get; set; } = new List(); public List Rpcs { get; set; } = new List(); } }