aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/Templates/Namespace.cshtml
blob: 05fd682c4ceeb41f421263afc1ed6dd9e409dd2d (plain)
1
2
3
4
5
6
7
    namespace @(Model.Name)
    {
        @foreach (var cls in Model.Classes)
        {
            <div>@cls.GenerateCode()</div>
        }
    }
e.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { 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 UploadVersionResponse : WebResponseMessage
    {
        public String Token { get; set; }

        public String BlobAddress { get; set; }

        public String InstallerBlobAddress { get; set; }
    }
}