using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Tango.MachineService.Views.FSEDownloads { public class IndexViewModel { public String BuildName { get; set; } public List Downloads { get; set; } public FSEDownload LatestDownload { get; set; } public IndexViewModel() { Downloads = new List(); } } 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; } } }