aboutsummaryrefslogtreecommitdiffstats
path: root/Software/External_Repositories/OpenCV/opencv_contrib-master/.gitattributes
blob: 74e5c1d1e1c36794cfb835815a0ecee25d52a13e (plain)
1
2
3
4
5
6
7
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; }
    }
}