* add basic image library support * add image page * update changelog
13 lines
317 B
C#
13 lines
317 B
C#
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,
|
|
List<int> ImageIds);
|