diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-02-23 21:46:15 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-23 21:46:15 +0900 |
| commit | de40f22a463b7e83461f06b9cd256a9cc7b04a3e (patch) | |
| tree | f95f508ac06864841c6404d98632e8506f3f7cf7 /Emby.Server.Implementations/IO/ExtendedFileSystemInfo.cs | |
| parent | 72c98e41ca2c0042edf645298371245c1abee354 (diff) | |
| parent | 184ad29f3f5a579b38ce01d88bf22ad9dc229617 (diff) | |
Merge pull request #2384 from Bond-009/warn16
Fix some warnings in Emby.Server.Implementations
Diffstat (limited to 'Emby.Server.Implementations/IO/ExtendedFileSystemInfo.cs')
| -rw-r--r-- | Emby.Server.Implementations/IO/ExtendedFileSystemInfo.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/IO/ExtendedFileSystemInfo.cs b/Emby.Server.Implementations/IO/ExtendedFileSystemInfo.cs index 5be144452..ec26324c3 100644 --- a/Emby.Server.Implementations/IO/ExtendedFileSystemInfo.cs +++ b/Emby.Server.Implementations/IO/ExtendedFileSystemInfo.cs @@ -6,7 +6,9 @@ namespace Emby.Server.Implementations.IO public class ExtendedFileSystemInfo { public bool IsHidden { get; set; } + public bool IsReadOnly { get; set; } + public bool Exists { get; set; } } } |
