aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/FspSrv/DirectoryEntry.cs
blob: bdb0c1cd91d75ab4b456fe074adf6c9b93b03028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Ryujinx.HLE.HOS.Services.FspSrv
{
    public struct DirectoryEntry
    {
        public string Path { get; }
        public long   Size { get; }

        public DirectoryEntryType EntryType { get; set; }

        public DirectoryEntry(string path, DirectoryEntryType directoryEntryType, long size = 0)
        {
            Path = path;
            EntryType = directoryEntryType;
            Size = size;
        }
    }
}