// Copyright (C) 2024 Intro-Skipper contributors <intro-skipper.org>
// SPDX-License-Identifier: GPL-3.0-only.
namespace IntroSkipper.Data;
/// <summary>
/// Type of media file analysis to perform.
/// </summary>
public enum AnalysisMode
{
/// Detect introduction sequences.
Introduction,
/// Detect credits.
Credits,
/// Detect previews.
Preview,
/// Detect recaps.
Recap,
}