ExtendedFileSystemInfo.cs 260 B

12345678910111213
  1. #pragma warning disable CS1591
  2. namespace Emby.Server.Implementations.IO
  3. {
  4. public class ExtendedFileSystemInfo
  5. {
  6. public bool IsHidden { get; set; }
  7. public bool IsReadOnly { get; set; }
  8. public bool Exists { get; set; }
  9. }
  10. }