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 view.
///
public class PlaylistViewNavigationRequestMessage : PageNavigationRequestMessage
{
///
/// Creates a new instance of .
///
/// The playlist to display in the playlist view.
/// If true, navigation will be added to the navigation stack.
public PlaylistViewNavigationRequestMessage(PlaylistViewModel playlist, bool record = true)
: base(playlist, record)
{
}
///
public override bool ShowLargeHeader => false;
///
public override string PageTitleResource => "Playlist";
}
}