2024-10-25 14:31:50 -04:00
|
|
|
// Copyright (C) 2024 Intro-Skipper contributors <intro-skipper.org>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only.
|
2024-10-25 14:15:12 -04:00
|
|
|
|
2024-10-19 23:50:41 +02:00
|
|
|
namespace IntroSkipper.Data
|
2024-07-27 21:11:01 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Result of fingerprinting and analyzing two episodes in a season.
|
|
|
|
/// All times are measured in seconds relative to the beginning of the media file.
|
|
|
|
/// </summary>
|
|
|
|
public class TimeStamps
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets Introduction.
|
|
|
|
/// </summary>
|
2024-09-12 08:37:47 +00:00
|
|
|
public Segment Introduction { get; set; } = new Segment();
|
2024-07-27 21:11:01 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets Credits.
|
|
|
|
/// </summary>
|
2024-09-12 08:37:47 +00:00
|
|
|
public Segment Credits { get; set; } = new Segment();
|
2024-11-21 15:42:55 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets Recap.
|
|
|
|
/// </summary>
|
|
|
|
public Segment Recap { get; set; } = new Segment();
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets Preview.
|
|
|
|
/// </summary>
|
|
|
|
public Segment Preview { get; set; } = new Segment();
|
2024-07-27 21:11:01 +00:00
|
|
|
}
|
|
|
|
}
|