aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/LocationType.cs
blob: 879b31c5c8f9abb82c6f21ae4863a948a240782b (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
27
28
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum LocationType.
    /// </summary>
    public enum LocationType
    {
        /// <summary>
        /// The file system.
        /// </summary>
        FileSystem = 0,

        /// <summary>
        /// The remote.
        /// </summary>
        Remote = 1,

        /// <summary>
        /// The virtual.
        /// </summary>
        Virtual = 2,

        /// <summary>
        /// The offline.
        /// </summary>
        Offline = 3
    }
}