jellyfin/MediaBrowser.Controller/Entities/LinkedChildType.cs

19 lines
364 B
C#
Raw Normal View History

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 12:28:27 -05:00
}