mirror of
https://github.com/aaru-dps/RedBookPlayer.git
synced 2025-12-16 19:24:41 +00:00
Port only distinct new feature work
This commit is contained in:
@@ -46,4 +46,41 @@ namespace RedBookPlayer.Models
|
||||
/// </summary>
|
||||
Playing,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Playback repeat mode
|
||||
/// </summary>
|
||||
public enum RepeatMode
|
||||
{
|
||||
/// <summary>
|
||||
/// No repeat
|
||||
/// </summary>
|
||||
None,
|
||||
|
||||
/// <summary>
|
||||
/// Repeat a single track
|
||||
/// </summary>
|
||||
Single,
|
||||
|
||||
/// <summary>
|
||||
/// Repeat all tracks
|
||||
/// </summary>
|
||||
All,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Determine how to handle different sessions
|
||||
/// </summary>
|
||||
public enum SessionHandling
|
||||
{
|
||||
/// <summary>
|
||||
/// Allow playing tracks from all sessions
|
||||
/// </summary>
|
||||
AllSessions = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Only play tracks from the first session
|
||||
/// </summary>
|
||||
FirstSessionOnly = 1,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user