using System.Collections.Generic; namespace GFGGame { public class LuckyBoxBonusData { public int id; public string name; public int order; public List itemList = new List(); } }