namespace MediaBrowser.Controller.Entities
{
///
/// The linked child type.
///
public enum LinkedChildType
{
///
/// Manually linked child.
///
Manual = 0,
///
/// Shortcut linked child.
///
Shortcut = 1,
///
/// Local alternate version (same item, different file path).
///
LocalAlternateVersion = 2,
///
/// Linked alternate version (different item ID).
///
LinkedAlternateVersion = 3
}
}