using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Tango.MachineService.Views.FSEDownloads
{
public class IndexViewModel
{
public List<FSEDownload> Downloads { get; set; }
public FSEDownload LatestDownload { get; set; }
public IndexViewModel()
{
Downloads = new List<FSEDownload>();
}
}
public class FSEDownload
{
public String Name { get; set; }
public String Version { get; set; }
public String Date { get; set; }
public String Comments { get; set; }
public String Address { get; set; }
}
}