blob: 81fb5cfc47aff724228c97ce3acc4684f69b2911 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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();
}
}
}
|