aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Update/UploadVersionResponse.cs
blob: ca40617f1bf73f8b2cef01315250bec61ca5bc5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Common.Update
{
    [DataContract]
    public class UploadVersionResponse
    {
        [DataMember]
        public String Token { get; set; }

        [DataMember]
        public String BlobAddress { get; set; }
    }
}