1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-30 03:26:47 -06:00
ryujinx/Ryujinx.HLE/HOS/Services/FspSrv/DirectoryEntry.cs

18 lines
437 B
C#
Raw Normal View History

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;
}
}
}