* initial remote stream library support; scanning seems to work ok * flood schedule remote streams kind of works * switch remote stream definitions to yaml files * implement remote stream script playback * update changelog
18 lines
645 B
C#
18 lines
645 B
C#
namespace ErsatzTV.Application.MediaCards;
|
|
|
|
public record CollectionCardResultsViewModel(
|
|
string Name,
|
|
List<MovieCardViewModel> MovieCards,
|
|
List<TelevisionShowCardViewModel> ShowCards,
|
|
List<TelevisionSeasonCardViewModel> SeasonCards,
|
|
List<TelevisionEpisodeCardViewModel> EpisodeCards,
|
|
List<ArtistCardViewModel> ArtistCards,
|
|
List<MusicVideoCardViewModel> MusicVideoCards,
|
|
List<OtherVideoCardViewModel> OtherVideoCards,
|
|
List<SongCardViewModel> SongCards,
|
|
List<ImageCardViewModel> ImageCards,
|
|
List<RemoteStreamCardViewModel> RemoteStreamCards)
|
|
{
|
|
public bool UseCustomPlaybackOrder { get; set; }
|
|
}
|