Fix warnings MediaBrowser.Model

This commit is contained in:
Bond_009
2020-02-04 01:49:27 +01:00
parent 176e850973
commit f47ad85011
290 changed files with 1132 additions and 290 deletions

View File

@@ -1,24 +1,27 @@
namespace MediaBrowser.Model.IO
{
/// <summary>
/// Enum FileSystemEntryType
/// Enum FileSystemEntryType.
/// </summary>
public enum FileSystemEntryType
{
/// <summary>
/// The file
/// The file.
/// </summary>
File,
/// <summary>
/// The directory
/// The directory.
/// </summary>
Directory,
/// <summary>
/// The network computer
/// The network computer.
/// </summary>
NetworkComputer,
/// <summary>
/// The network share
/// The network share.
/// </summary>
NetworkShare
}