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