aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.FileSystem/Network/FileSystemItemDTO.cs
blob: 900ba062897bfce79175b8988770edd4613ab3ef (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
28
29
30
31
32
33
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 long Size { get; set; }

        public bool IsRoot { get; set; }

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

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