aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/LocationType.cs
blob: 09c0b20cab89f62d8cfdb9f14e51b207ae462f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum LocationType
    /// </summary>
    public enum LocationType
    {
        /// <summary>
        /// The file system
        /// </summary>
        FileSystem = 1,
        /// <summary>
        /// The remote
        /// </summary>
        Remote = 2,
        /// <summary>
        /// The virtual
        /// </summary>
        Virtual = 3,
        /// <summary>
        /// The offline
        /// </summary>
        Offline = 4
    }
}