2021-05-11 11:55:46 +00:00
|
|
|
|
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
|
|
|
|
|
}
|
2021-12-24 17:28:27 +00:00
|
|
|
|
}
|