From 48facb797ed912e4ea6b04b17d1ff190ac2daac4 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 12 Sep 2018 19:26:21 +0200 Subject: Update to 3.5.2 and .net core 2.1 --- MediaBrowser.Model/IO/FileSystemMetadata.cs | 56 ----------------------------- 1 file changed, 56 deletions(-) delete mode 100644 MediaBrowser.Model/IO/FileSystemMetadata.cs (limited to 'MediaBrowser.Model/IO/FileSystemMetadata.cs') diff --git a/MediaBrowser.Model/IO/FileSystemMetadata.cs b/MediaBrowser.Model/IO/FileSystemMetadata.cs deleted file mode 100644 index 2aae4bb54..000000000 --- a/MediaBrowser.Model/IO/FileSystemMetadata.cs +++ /dev/null @@ -1,56 +0,0 @@ -using System; - -namespace MediaBrowser.Model.IO -{ - public class FileSystemMetadata - { - /// - /// Gets or sets a value indicating whether this is exists. - /// - /// true if exists; otherwise, false. - public bool Exists { get; set; } - /// - /// Gets or sets the full name. - /// - /// The full name. - public string FullName { get; set; } - /// - /// Gets or sets the name. - /// - /// The name. - public string Name { get; set; } - /// - /// Gets or sets the extension. - /// - /// The extension. - public string Extension { get; set; } - /// - /// Gets or sets the length. - /// - /// The length. - public long Length { get; set; } - /// - /// Gets or sets the name of the directory. - /// - /// The name of the directory. - public string DirectoryName { get; set; } - - /// - /// Gets or sets the last write time UTC. - /// - /// The last write time UTC. - public DateTime LastWriteTimeUtc { get; set; } - /// - /// Gets or sets the creation time UTC. - /// - /// The creation time UTC. - public DateTime CreationTimeUtc { get; set; } - /// - /// Gets a value indicating whether this instance is directory. - /// - /// true if this instance is directory; otherwise, false. - public bool IsDirectory { get; set; } - public bool IsHidden { get; set; } - public bool IsReadOnly { get; set; } - } -} -- cgit v1.2.3