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