Upated session-related file names.

This commit is contained in:
2025-03-22 15:31:44 -04:00
parent d988961513
commit c3a87dee6a
6 changed files with 10 additions and 10 deletions

View File

@@ -2,9 +2,9 @@
public partial class ApplicationSession
{
public WindowSession Window { get; set; } = new();
public NavigationSession Navigation { get; set; } = new();
public AudioLibrarySession Library { get; set; } = new();
public AudioPlayerSession Player { get; set; } = new();
public PlaylistSession Playlist { get; set; } = new();
public WindowState Window { get; set; } = new();
public NavigationState Navigation { get; set; } = new();
public AudioLibraryState Library { get; set; } = new();
public AudioPlayerState Player { get; set; } = new();
public PlaylistState Playlist { get; set; } = new();
}

View File

@@ -1,6 +1,6 @@
namespace Harmonia.WinUI.Session;
public partial class AudioLibrarySession
public partial class AudioLibraryState
{
public string? FlexViewType { get; set; }
public string? LibraryViewType { get; set; }

View File

@@ -1,6 +1,6 @@
namespace Harmonia.WinUI.Session;
public partial class AudioPlayerSession
public partial class AudioPlayerState
{
public string? PlaylistUID { get; set; }
public string? PlaylistSongUID { get; set; }

View File

@@ -1,6 +1,6 @@
namespace Harmonia.WinUI.Session;
public partial class NavigationSession
public partial class NavigationState
{
public string? CurrentPage { get; set; }
}

View File

@@ -1,6 +1,6 @@
namespace Harmonia.WinUI.Session;
public partial class PlaylistSession
public partial class PlaylistState
{
public string? OpenPlaylistUID { get; set; }
}

View File

@@ -1,6 +1,6 @@
namespace Harmonia.WinUI.Session;
public partial class WindowSession
public partial class WindowState
{
public bool IsMaximized { get; set; }
}