Files
ersatztv/ErsatzTV.Core/Domain/Collection/PlaylistGroup.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

10 lines
229 B
C#

namespace ErsatzTV.Core.Domain;
public class PlaylistGroup
{
public int Id { get; set; }
public string Name { get; set; }
public bool IsSystem { get; set; }
public ICollection<Playlist> Playlists { get; set; }
}