aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Versioning
ModeNameSize
-rw-r--r--GlobalVersionInfo.cs371logstatsplain
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>();
        }
    }
}