Files
ersatztv/ErsatzTV.Core/Domain/Collection/TraktList.cs
T
Jason DoveandGitHub 867c88d8fc add trakt playlist option (#2171)
* add generate playlist option; add system playlists

* fix official lists; sync items to playlist
2025-07-19 16:56:25 +00:00

20 lines
641 B
C#

namespace ErsatzTV.Core.Domain;
public class TraktList
{
public int Id { get; set; }
public int TraktId { get; set; }
public string User { get; set; }
public string List { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public int ItemCount { get; set; }
public bool AutoRefresh { get; set; }
public bool GeneratePlaylist { get; set; }
public int? PlaylistId { get; set; }
public Playlist Playlist { get; set; }
public DateTime? LastUpdate { get; set; }
public DateTime? LastMatch { get; set; }
public List<TraktListItem> Items { get; set; }
}