using System; namespace Jellyfin.Plugin.Jellypod.Api.Models; /// /// Response containing playback progress info. /// public class PlaybackProgressResponse { /// /// Gets or sets the playback position in ticks. /// public long PositionTicks { get; set; } /// /// Gets or sets a value indicating whether the episode has been played. /// public bool IsPlayed { get; set; } /// /// Gets or sets the date the episode was last played. /// public DateTime? LastPlayedDate { get; set; } /// /// Gets or sets the number of times the episode has been played. /// public int PlayCount { get; set; } }