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