namespace RedBookPlayer.Models.Discs { public class PlayerOptions { /// /// Indicate how data tracks should be handled /// public DataPlayback DataPlayback { get; set; } = DataPlayback.Skip; /// /// Indicate if hidden tracks should be loaded /// public bool LoadHiddenTracks { get; set; } = false; /// /// Indicates the repeat mode /// public RepeatMode RepeatMode { get; set; } = RepeatMode.None; /// /// Indicates how tracks on different session should be handled /// public SessionHandling SessionHandling { get; set; } = SessionHandling.AllSessions; } }