// Copyright (C) 2024 Intro-Skipper contributors // SPDX-License-Identifier: GPL-3.0-only. namespace ConfusedPolarBear.Plugin.IntroSkipper.Data { /// /// Result of fingerprinting and analyzing two episodes in a season. /// All times are measured in seconds relative to the beginning of the media file. /// public class TimeStamps { /// /// Gets or sets Introduction. /// public Intro Introduction { get; set; } = new Intro(); /// /// Gets or sets Credits. /// public Intro Credits { get; set; } = new Intro(); } }