using System; using System.Collections.Generic; using System.Linq; using System.Web; using Tango.Portal.Models; namespace Tango.Portal.ViewModels { public class UtilitiesVM : ViewModel { public UtilitiesVM(SessionUser user) : base(user) { Downloads = new List(); } public List Downloads { get; set; } } }