aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Test/App.xaml
blob: 731c7f907b1b9aabf1ae8f8d38e67ba9979e9927 (plain)
1
2
3
4
5
6
7
8
9
<Application x:Class="Tango.Scripting.Test.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:Tango.Scripting.Test"
             StartupUri="MainWindow.xaml">
    <Application.Resources>
         
    </Application.Resources>
</Application>
color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
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 CheckForUpdatesResponse : WebResponseMessage
    {
        public bool IsUpdateAvailable { get; set; }

        public String Version { get; set; }

        public String Comments { get; set; }

        public String BlobAddress { get; set; }

        public String CdnAddress { get; set; }
    }
}