//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Controller.Entities
{
///
/// The linked child type.
///
public enum LinkedChildType
{
///
/// Manually linked child.
///
Manual = 0,
///
/// Shortcut linked child.
///
Shortcut = 1
}
}