#pragma warning disable CA2227 // Collection properties should be read only using System; using System.Collections.Generic; namespace Jellyfin.Database.Implementations.Entities; /// /// Keyframe information for a specific file. /// public class KeyframeData { /// /// Gets or Sets the ItemId. /// public required Guid ItemId { get; set; } /// /// Gets or sets the total duration of the stream in ticks. /// public long TotalDuration { get; set; } /// /// Gets or sets the keyframes in ticks. /// public ICollection? KeyframeTicks { get; set; } /// /// Gets or sets the item reference. /// public BaseItemEntity? Item { get; set; } }