mirror of
https://github.com/jellyfin/jellyfin-plugin-trakt.git
synced 2024-11-26 23:30:25 +00:00
31 lines
825 B
C#
31 lines
825 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
namespace Trakt.Helpers;
|
|
|
|
/// <summary>
|
|
/// Class that contains all the items to be reported to trakt.tv and supporting properties.
|
|
/// </summary>
|
|
internal sealed class UserDataPackage
|
|
{
|
|
public UserDataPackage()
|
|
{
|
|
SeenMovies = new List<Movie>();
|
|
UnSeenMovies = new List<Movie>();
|
|
SeenEpisodes = new List<Episode>();
|
|
UnSeenEpisodes = new List<Episode>();
|
|
}
|
|
|
|
public Guid? CurrentSeriesId { get; set; }
|
|
|
|
public ICollection<Movie> SeenMovies { get; set; }
|
|
|
|
public ICollection<Movie> UnSeenMovies { get; set; }
|
|
|
|
public ICollection<Episode> SeenEpisodes { get; set; }
|
|
|
|
public ICollection<Episode> UnSeenEpisodes { get; set; }
|
|
}
|