aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.RemoteRunner.UI/FileUpload.cs
blob: e707d475cdaae9eca6e03cc86467d5a9b1afac94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.IO;

namespace Tango.RemoteRunner.UI
{
    public class FileUpload
    {
        public TemporaryFolder Folder { get; set; }
        public String UploadID { get; set; }
        public String FileName { get; set; }
        public bool Completed { get; set; }
        public long Length { get; set; }
        public long CurrentLength { get; set; }
        public bool Expanded { get; set; }

        public String FullPath
        {
            get { return Path.Combine(Folder.Path, FileName); }
        }

    }
}