mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
broke the UI on twitch.
This commit is contained in:
parent
09f365c039
commit
3c959284f5
12 changed files with 187 additions and 12 deletions
23
src/Ombi.Core/Models/Search/V2/MovieCollectionsViewModel.cs
Normal file
23
src/Ombi.Core/Models/Search/V2/MovieCollectionsViewModel.cs
Normal file
|
@ -0,0 +1,23 @@
|
|||
using System.Collections.Generic;
|
||||
using Ombi.Store.Entities;
|
||||
|
||||
namespace Ombi.Core.Models.Search.V2
|
||||
{
|
||||
public class MovieCollectionsViewModel
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Overview { get; set; }
|
||||
public List<MovieCollection> Collection { get; set; }
|
||||
}
|
||||
|
||||
public class MovieCollection : SearchViewModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Overview { get; set; }
|
||||
public string PosterPath { get; set; }
|
||||
public string Title { get; set; }
|
||||
|
||||
|
||||
public override RequestType Type => RequestType.Movie;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue