aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.Portal/ViewModel.cs
blob: cf03b3bccb62e5b207efa21d03f7c5bae143bd64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Tango.Portal.Controllers;
using Tango.Portal.Models;

namespace Tango.Portal
{
    public class ViewModel
    {
        public SessionUser User { get; set; }

        public ViewModel(SessionUser user)
        {
            User = user;
        }
    }
}