DirectoryEntry.cs 541 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Ryujinx.HLE.HOS.Services.FspSrv
  5. {
  6. public struct DirectoryEntry
  7. {
  8. public string Path { get; private set; }
  9. public long Size { get; private set; }
  10. public DirectoryEntryType EntryType { get; set; }
  11. public DirectoryEntry(string Path, DirectoryEntryType DirectoryEntryType, long Size = 0)
  12. {
  13. this.Path = Path;
  14. EntryType = DirectoryEntryType;
  15. this.Size = Size;
  16. }
  17. }
  18. }