33 lines
680 B
C#
33 lines
680 B
C#
// <copyright file="FileSystemEntryType.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Model.IO
|
|
{
|
|
/// <summary>
|
|
/// Enum FileSystemEntryType.
|
|
/// </summary>
|
|
public enum FileSystemEntryType
|
|
{
|
|
/// <summary>
|
|
/// The file.
|
|
/// </summary>
|
|
File,
|
|
|
|
/// <summary>
|
|
/// The directory.
|
|
/// </summary>
|
|
Directory,
|
|
|
|
/// <summary>
|
|
/// The network computer.
|
|
/// </summary>
|
|
NetworkComputer,
|
|
|
|
/// <summary>
|
|
/// The network share.
|
|
/// </summary>
|
|
NetworkShare
|
|
}
|
|
}
|