Added application setting objects.

This commit is contained in:
2025-03-22 15:28:46 -04:00
parent 107a20b713
commit d988961513
10 changed files with 63 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
namespace Harmonia.WinUI.Session;
public partial class AudioPlayerSession
{
public string? PlaylistUID { get; set; }
public string? PlaylistSongUID { get; set; }
public double Position { get; set; } = 0.0;
public string? PlaybackState { get; set; }
public double Volume { get; set; } = 1.0;
public bool IsMuted { get; set; }
public string? RepeatState { get; set; }
public bool IsRandom { get; set; }
}