aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IO/ExtendedFileSystemInfo.cs
blob: 48b34a3a0427480b58013e9b07ffb52240f51e18 (plain)
1
2
3
4
5
6
7
8
9
namespace Emby.Server.Implementations.IO
{
    public class ExtendedFileSystemInfo
    {
        public bool IsHidden { get; set; }
        public bool IsReadOnly { get; set; }
        public bool Exists { get; set; }
    }
}