aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Views/Downloads/IndexViewModel.cs
blob: 43cdfcdef829ecca3641a6d70d564fbe6f732b8b (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.MachineService.Models;

namespace Tango.MachineService.Views.Downloads
{
    public class IndexViewModel
    {
        public List<DownloadModel> Downloads { get; set; }

        public IndexViewModel()
        {
            Downloads = new List<DownloadModel>();
        }
    }
}