using System.Collections.Generic; namespace Wizard; public class BattlePassPurchaseInfo { public string Description { get; private set; } public List ProductList { get; private set; } public BattlePassPurchaseInfo(string description, List productList) { Description = description; ProductList = productList; } }