// Copyright (C) 2024 Intro-Skipper Contributors // SPDX-License-Identifier: GNU General Public License v3.0 only. namespace IntroSkipper.Data; /// /// A frame of video that partially (or entirely) consists of black pixels. /// /// /// Initializes a new instance of the class. /// /// Percentage of the frame that is black. /// Time this frame appears at. public class BlackFrame(int percent, double time) { /// /// Gets or sets the percentage of the frame that is black. /// public int Percentage { get; set; } = percent; /// /// Gets or sets the time (in seconds) this frame appeared at. /// public double Time { get; set; } = time; }