// Auto Generated Code By excel2json // Generate From Excel\Contract.xlsx. SheetName: ContractContentConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "ContractContentConfig.json")] public partial class ContractContentConfigHolder : ConfigHolder { } [Serializable] public struct ContractContentConfig : IConfig { public int GetID() {return ID;} /// ///ID /// public int ID; /// ///隶属于哪个契约 潜规则:B列和C列的值要一样 /// public int ContractID; /// ///监听类型 1.飞艇等级到达 2.队伍评分到达 3.流明试炼总星星数量达到 4.在深渊道馆中的踢馆次数 /// public int finishType; /// ///监听值 /// public int finishValue; /// ///免费奖励ID /// public int[] freePrizeID; /// ///免费奖励数量 /// public int[] freePrizeCount; /// ///付费奖励ID /// public int[] paidPrizeID; /// ///付费奖励数量 /// public int[] paidPrizeCount; } } // End of Auto Generated Code