// 这个接口定义了所有相关Config类需要提供的公共属性 public interface IPhantasmPavilionConfigProperties { string Name { get; } int ExpireMinutes { get; } int UnlockWay { get; } int UnlockValue { get; } int UnlockNeedCnt { get; } int UpNeedCnt { get; } int StarMax { get; } int[] AttrIDList { get; } int[] InitAttrValueList { get; } int[] AttrPerStarAddList { get; } int ResourceType { get; } string ResourceValue { get; } string GetWayString { get; } }