ExtendedFileSystemInfo.cs 226 B

123456789
  1. namespace Emby.Server.Implementations.IO
  2. {
  3. public class ExtendedFileSystemInfo
  4. {
  5. public bool IsHidden { get; set; }
  6. public bool IsReadOnly { get; set; }
  7. public bool Exists { get; set; }
  8. }
  9. }