aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Views/Downloads/IndexViewModel.cs
blob: 43cdfcdef829ecca3641a6d70d564fbe6f732b8b (plain)
1
2
3
4
5
6
7
8
9pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left
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>();
        }
    }
}