aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/.gitignore
blob: e10e727be5ce2dc48c7d4d86a401a2744e73c8c1 (plain)
1
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Tango.MachineService.Models
{
    public class DownloadModel
    {
        public DownloadApp App { get; set; }
        public String ID { get; set; }
        public String Name { get; set; }
        public String Version { get; set; }
        public DateTime Date { get; set; }
        public String User { get; set; }
        public String Comments { get; set; }

        public enum DownloadApp
        {
            MachineStudio,
            PPC,
        }
    }
}