using System.Collections.Generic; namespace Wizard.Scripts.Network.Data.TaskData.SleevePurchase; public class SleeveSeriesPurchaseInfo { private List m_ProductList = new List(); public int series_id { get; set; } public List productList => m_ProductList; public bool IsNew { get; set; } }