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