Upated session-related file names.
This commit is contained in:
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
public partial class ApplicationSession
|
public partial class ApplicationSession
|
||||||
{
|
{
|
||||||
public WindowSession Window { get; set; } = new();
|
public WindowState Window { get; set; } = new();
|
||||||
public NavigationSession Navigation { get; set; } = new();
|
public NavigationState Navigation { get; set; } = new();
|
||||||
public AudioLibrarySession Library { get; set; } = new();
|
public AudioLibraryState Library { get; set; } = new();
|
||||||
public AudioPlayerSession Player { get; set; } = new();
|
public AudioPlayerState Player { get; set; } = new();
|
||||||
public PlaylistSession Playlist { get; set; } = new();
|
public PlaylistState Playlist { get; set; } = new();
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
namespace Harmonia.WinUI.Session;
|
namespace Harmonia.WinUI.Session;
|
||||||
|
|
||||||
public partial class AudioLibrarySession
|
public partial class AudioLibraryState
|
||||||
{
|
{
|
||||||
public string? FlexViewType { get; set; }
|
public string? FlexViewType { get; set; }
|
||||||
public string? LibraryViewType { get; set; }
|
public string? LibraryViewType { get; set; }
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
namespace Harmonia.WinUI.Session;
|
namespace Harmonia.WinUI.Session;
|
||||||
|
|
||||||
public partial class AudioPlayerSession
|
public partial class AudioPlayerState
|
||||||
{
|
{
|
||||||
public string? PlaylistUID { get; set; }
|
public string? PlaylistUID { get; set; }
|
||||||
public string? PlaylistSongUID { get; set; }
|
public string? PlaylistSongUID { get; set; }
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
namespace Harmonia.WinUI.Session;
|
namespace Harmonia.WinUI.Session;
|
||||||
|
|
||||||
public partial class NavigationSession
|
public partial class NavigationState
|
||||||
{
|
{
|
||||||
public string? CurrentPage { get; set; }
|
public string? CurrentPage { get; set; }
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
namespace Harmonia.WinUI.Session;
|
namespace Harmonia.WinUI.Session;
|
||||||
|
|
||||||
public partial class PlaylistSession
|
public partial class PlaylistState
|
||||||
{
|
{
|
||||||
public string? OpenPlaylistUID { get; set; }
|
public string? OpenPlaylistUID { get; set; }
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
namespace Harmonia.WinUI.Session;
|
namespace Harmonia.WinUI.Session;
|
||||||
|
|
||||||
public partial class WindowSession
|
public partial class WindowState
|
||||||
{
|
{
|
||||||
public bool IsMaximized { get; set; }
|
public bool IsMaximized { get; set; }
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user