Files
RedBookPlayer/RedBookPlayer.Models/Discs/OpticalDiscOptions.cs

29 lines
853 B
C#
Raw Normal View History

2021-08-05 21:05:20 -07:00
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;
2021-08-24 22:11:25 -07:00
/// <summary>
/// Indicates how tracks on different session should be handled
/// </summary>
public SessionHandling SessionHandling { get; set; } = SessionHandling.AllSessions;
2021-08-05 21:05:20 -07:00
#endregion
}
}