* first pass at adding song libraries * start handling optional video * fix song playback * fix song transitions * add songs page to UI
15 lines
366 B
C#
15 lines
366 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Application.Search
|
|
{
|
|
public record SearchResultAllItemsViewModel(
|
|
List<int> MovieIds,
|
|
List<int> ShowIds,
|
|
List<int> SeasonIds,
|
|
List<int> EpisodeIds,
|
|
List<int> ArtistIds,
|
|
List<int> MusicVideoIds,
|
|
List<int> OtherVideoIds,
|
|
List<int> SongIds);
|
|
}
|