blob: 34438e1c5c7d2b3e96aea835b991ae102df6136d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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<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; }
}
}
|