diff options
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.Portal/ViewModels/IndexVM.cs')
| -rw-r--r-- | Software/Visual_Studio/Web/Tango.Portal/ViewModels/IndexVM.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Web/Tango.Portal/ViewModels/IndexVM.cs b/Software/Visual_Studio/Web/Tango.Portal/ViewModels/IndexVM.cs new file mode 100644 index 000000000..81fb5cfc4 --- /dev/null +++ b/Software/Visual_Studio/Web/Tango.Portal/ViewModels/IndexVM.cs @@ -0,0 +1,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(); + } + } +}
\ No newline at end of file |
