aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/LinkedChildType.cs
blob: d39e36ff288af4d7a3e8d4b21c90572b50ce6c94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Controller.Entities
{
    /// <summary>
    /// The linked child type.
    /// </summary>
    public enum LinkedChildType
    {
        /// <summary>
        /// Manually linked child.
        /// </summary>
        Manual = 0,

        /// <summary>
        /// Shortcut linked child.
        /// </summary>
        Shortcut = 1
    }
}