mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-21 15:16:36 -04:00
97a02f5803
I think some people need to change their IDE configuration ;)
19 lines
361 B
C#
19 lines
361 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
|
|
}
|
|
}
|