mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
12 lines
290 B
C#
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; }
|
|
}
|
|
}
|