aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/LocationType.cs
blob: 84de803aa25e1584e6695e61eef7b4349ad47a98 (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 = 0,
        /// <summary>
        /// The remote
        /// </summary>
        Remote = 1,
        /// <summary>
        /// The virtual
        /// </summary>
        Virtual = 2,
        /// <summary>
        /// The offline
        /// </summary>
        Offline = 3
    }
}