using System.Collections.Generic; namespace Jellyfin.Plugin.SRFPlay.Api.Models; /// /// Outcome of a resume point ("Continue Watching") cleanup run. /// public class ResumeCleanupResult { /// /// Gets or sets the number of users whose resume list was inspected. /// public int UsersChecked { get; set; } /// /// Gets or sets the number of plugin-owned resume points that were inspected. /// public int Inspected { get; set; } /// /// Gets or sets the number of resume points that were cleared. /// public int Cleared { get; set; } /// /// Gets the number of cleared resume points grouped by the rule that matched. /// public Dictionary ClearedByReason { get; } = new Dictionary(); }