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

13 lines
289 B
C#
Raw Normal View History

2019-11-01 13:38:54 -04:00
#pragma warning disable CS1591
2019-12-10 18:13:57 -05:00
#pragma warning disable SA1600
2019-11-01 13:38:54 -04:00
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; }
}
}