Files
RedBookPlayer/RedBookPlayer.Models/Discs/OpticalDiscOptions.cs
2021-08-05 21:05:20 -07:00

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