mirror of
https://github.com/aaru-dps/RedBookPlayer.git
synced 2025-12-16 19:24:41 +00:00
24 lines
643 B
C#
24 lines
643 B
C#
namespace RedBookPlayer.Models.Discs
|
|
{
|
|
public class OpticalDiscOptions
|
|
{
|
|
#region CompactDisc
|
|
|
|
/// <summary>
|
|
/// Indicate how data tracks should be handled
|
|
/// </summary>
|
|
public DataPlayback DataPlayback { get; set; } = DataPlayback.Skip;
|
|
|
|
/// <summary>
|
|
/// Indicate if a TOC should be generated if missing
|
|
/// </summary>
|
|
public bool GenerateMissingToc { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// Indicate if hidden tracks should be loaded
|
|
/// </summary>
|
|
public bool LoadHiddenTracks { get; set; } = false;
|
|
|
|
#endregion
|
|
}
|
|
} |