using StrixMusic.Sdk.ViewModels; using StrixMusic.Shells.Groove.Messages.Navigation.Pages.Abstract; namespace StrixMusic.Shells.Groove.Messages.Navigation.Pages { /// /// Represents a request to navigate to a playlist collection view. /// public class PlaylistsViewNavigationRequestMessage : PageNavigationRequestMessage { /// /// Creates a new instance of . /// /// The playlist collection to display. /// If true, navigation will be added to the navigation stack. public PlaylistsViewNavigationRequestMessage(IPlaylistCollectionViewModel playlistCollection, bool record = true) : base(playlistCollection, record) { } /// public override bool ShowLargeHeader => true; /// public override string PageTitleResource => "Playlists"; } }