* add generate playlist option; add system playlists * fix official lists; sync items to playlist
20 lines
641 B
C#
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; }
|
|
}
|