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