aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Models
ModeNameSize
-rw-r--r--FineTuneItem.cs3220logstatsplain
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
using Tango.Transport.Web;

namespace Tango.MachineStudio.Common.Web
{
    public class UploadVersionRequest : WebRequestMessage
    {
        public String Version { get; set; }

        public String Comments { get; set; }

        public bool WithInstaller { get; set; }
    }
}