Ombi/Old/Ombi.Api.Models/Movie/CouchPotatoMovies.cs
2017-05-16 08:31:44 +01:00

12 lines
290 B
C#

using System.Collections.Generic;
namespace Ombi.Api.Models.Movie
{
public class CouchPotatoMovies
{
public List<Movie> movies { get; set; }
public int total { get; set; }
public bool success { get; set; }
public bool empty { get; set; }
}
}