broke the UI on twitch.

This commit is contained in:
tidusjar 2019-03-27 22:59:48 +00:00
commit 3c959284f5
12 changed files with 187 additions and 12 deletions

View 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;
}
}