// 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.Services { /// /// The behavior when the users clicks an collection to play from a collection. /// /// From the library, the user requests that an album is played from a list of other albums. public enum SiblingCollectionPlaybackBehavior { /// /// The selected collection plays. When completed, the next collection plays. /// AllCollections, /// /// The selected collection will play. When completed, playback ends. /// OnlySelectedCollection, } }