2024-08-30 15:29:48 +02:00
|
|
|
namespace MediaBrowser.Controller.Entities
|
2021-05-11 05:55:46 -06:00
|
|
|
{
|
|
|
|
|
/// <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 18:28:27 +01:00
|
|
|
}
|