mirror of
https://github.com/aaru-dps/RedBookPlayer.git
synced 2025-12-16 19:24:41 +00:00
Discs and audio output should be less aware
This commit is contained in:
25
RedBookPlayer.Models/Hardware/PlayerOptions.cs
Normal file
25
RedBookPlayer.Models/Hardware/PlayerOptions.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace RedBookPlayer.Models.Discs
|
||||
{
|
||||
public class PlayerOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// Indicate how data tracks should be handled
|
||||
/// </summary>
|
||||
public DataPlayback DataPlayback { get; set; } = DataPlayback.Skip;
|
||||
|
||||
/// <summary>
|
||||
/// Indicate if hidden tracks should be loaded
|
||||
/// </summary>
|
||||
public bool LoadHiddenTracks { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// Indicates the repeat mode
|
||||
/// </summary>
|
||||
public RepeatMode RepeatMode { get; set; } = RepeatMode.None;
|
||||
|
||||
/// <summary>
|
||||
/// Indicates how tracks on different session should be handled
|
||||
/// </summary>
|
||||
public SessionHandling SessionHandling { get; set; } = SessionHandling.AllSessions;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user