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>();
}
}
}