using System.Collections.Generic; namespace GFGGame { public class StudioData { /// /// 副本Id /// public int ChapterId; /// /// 已购买次数 /// public int BuyTimes; /// /// 已挑战次数 /// public int PlayTimes; /// /// 可挑战次数 /// public int TotalPlayTimes; } }