using System.Collections.Generic; namespace Wizard.Scripts.Network.Data.TaskData.SleevePurchase; public class SleeveProductInfo { private List _rewardInfoList = new List(); public int product_id { get; set; } public ShopCommonSaleInfo saleInfo { get; set; } public List rewardInfoList => _rewardInfoList; public bool is_purchased { get; set; } }