aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.Portal/ViewModels/DocsVM.cs
blob: 6db4cfad6672a225454dec1c9926b057bbfb6d7b (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 DocsVM : ViewModel
    {
        public DocsVM(SessionUser user) : base(user)
        {
            Downloads = new List<DownloadItem>();
        }

        public List<DownloadItem> Downloads { get; set; }
    }
}