mirror of
https://github.com/aaru-dps/RedBookPlayer.git
synced 2025-12-16 19:24:41 +00:00
Port only MVVM work and related fixes
This commit is contained in:
24
RedBookPlayer.Models/Discs/OpticalDiscOptions.cs
Normal file
24
RedBookPlayer.Models/Discs/OpticalDiscOptions.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user