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();
}