jellyfin/Emby.Server.Implementations/IO/ExtendedFileSystemInfo.cs

10 lines
229 B
C#
Raw Normal View History

namespace Emby.Server.Implementations.IO
2018-09-12 13:26:21 -04:00
{
public class ExtendedFileSystemInfo
{
public bool IsHidden { get; set; }
public bool IsReadOnly { get; set; }
public bool Exists { get; set; }
}
}