mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
24 lines
No EOL
748 B
C#
24 lines
No EOL
748 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ombi.Api.Radarr.Models
|
|
{
|
|
public class RadarrAddMovieResponse
|
|
{
|
|
|
|
public RadarrAddMovieResponse()
|
|
{
|
|
images = new List<string>();
|
|
}
|
|
public RadarrError Error { get; set; }
|
|
public RadarrAddOptions addOptions { get; set; }
|
|
public string title { get; set; }
|
|
public string rootFolderPath { get; set; }
|
|
public int qualityProfileId { get; set; }
|
|
public bool monitored { get; set; }
|
|
public int tmdbId { get; set; }
|
|
public List<string> images { get; set; }
|
|
public string titleSlug { get; set; }
|
|
public int year { get; set; }
|
|
public string minimumAvailability { get; set; }
|
|
}
|
|
} |