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

14 lines
260 B
C#
Raw Normal View History

2019-11-01 10:38:54 -07:00
#pragma warning disable CS1591
namespace Emby.Server.Implementations.IO
2018-09-12 10:26:21 -07:00
{
public class ExtendedFileSystemInfo
{
public bool IsHidden { get; set; }
2018-09-12 10:26:21 -07:00
public bool IsReadOnly { get; set; }
2018-09-12 10:26:21 -07:00
public bool Exists { get; set; }
}
}