// Copyright (C) 2024 Intro-Skipper contributors // SPDX-License-Identifier: GPL-3.0-only. namespace 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 Segment Introduction { get; set; } = new Segment(); /// /// Gets or sets Credits. /// public Segment Credits { get; set; } = new Segment(); /// /// Gets or sets Recap. /// public Segment Recap { get; set; } = new Segment(); /// /// Gets or sets Preview. /// public Segment Preview { get; set; } = new Segment(); } }