// Copyright (c) Arlo Godfrey. All Rights Reserved.
// Licensed under the GNU Lesser General Public License, Version 3.0 with additional terms.
// See the LICENSE, LICENSE.LESSER and LICENSE.ADDITIONAL files in the project root for more information.
namespace StrixMusic.Sdk.Plugins.CoreRemote
{
///
/// Common Ids used for core remoting.
///
public static class CommonRemoteIds
{
///
/// The remoting ID for a core's main library.
///
public static string RootLibrary => nameof(RootLibrary);
///
/// The remoting ID for a core's main discoverables collection.
///
public static string RootDiscoverables => nameof(RootDiscoverables);
///
/// The remoting ID for a core's main recently played collection.
///
public static string RootRecentlyPlayed => nameof(RootRecentlyPlayed);
///
/// The remoting ID for a core's pin collection.
///
public static string Pins => nameof(Pins);
}
}