2
0

ExtendedFileSystemInfo.cs 297 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Emby.Server.Implementations.IO
  5. {
  6. public class ExtendedFileSystemInfo
  7. {
  8. public bool IsHidden { get; set; }
  9. public bool IsReadOnly { get; set; }
  10. public bool Exists { get; set; }
  11. }
  12. }