mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
18 lines
363 B
C#
18 lines
363 B
C#
|
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
|
|||
|
}
|
|||
|
}
|