blob: 2a8621e5c7b57819ada5735146b461a6602ce641 (
plain)
1
2
3
4
5
6
7using 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>();
}
}
}
|