2019-11-01 17:38:54 +00:00
|
|
|
#pragma warning disable CS1591
|
2019-12-10 23:13:57 +00:00
|
|
|
#pragma warning disable SA1600
|
2019-11-01 17:38:54 +00:00
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
namespace Emby.Server.Implementations.IO
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
|
|
|
public class ExtendedFileSystemInfo
|
|
|
|
{
|
|
|
|
public bool IsHidden { get; set; }
|
|
|
|
public bool IsReadOnly { get; set; }
|
|
|
|
public bool Exists { get; set; }
|
|
|
|
}
|
|
|
|
}
|