aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.FileSystem/Network/FileSystemItemDTO.cs
blob: 43467f227573e06083e6faa2cb70f6d53b982b14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } 
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.FileSystem.Network
{
    public class FileSystemItemDTO
    {
        public String Path { get; set; }

        public String DriveLabel { get; set; }

        public FileSystemItemType Type { get; set; }

        public DriveType DriveType { get; set; }

        public DateTime DateModified { get; set; }

        public DateTime DateCreated { get; set; }

        public long Size { get; set; }

        public bool IsRoot { get; set; }

        public List<FileSystemItemDTO> Items { get; set; }

        public FileSystemItemDTO()
        {
            Items = new List<FileSystemItemDTO>();
        }
    }
}