Files
harmonia/Harmonia.WinUI/Session/AudioPlayerSession.cs

13 lines
438 B
C#

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