23 lines
506 B
C#
23 lines
506 B
C#
// <copyright file="LinkedChildType.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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
|
|
}
|
|
}
|