* add generate playlist option; add system playlists * fix official lists; sync items to playlist
12 lines
239 B
C#
12 lines
239 B
C#
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public record TraktListViewModel(
|
|
int Id,
|
|
int TraktId,
|
|
string Slug,
|
|
string Name,
|
|
int ItemCount,
|
|
int MatchCount,
|
|
bool AutoRefresh,
|
|
bool GeneratePlaylist);
|