aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/LinkedChildType.cs
blob: 3bd260a102b986c462d2ba5dfd1d318364d2a8a1 (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
    }
}