mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
17 lines
492 B
C#
17 lines
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Movies;
|
|
|
|
namespace Radarr.Api.V4.Collections
|
|
{
|
|
public class CollectionUpdateResource
|
|
{
|
|
public List<int> CollectionIds { get; set; }
|
|
public bool? Monitored { get; set; }
|
|
public bool? MonitorMovies { get; set; }
|
|
public List<int> QualityProfileIds { get; set; }
|
|
public string RootFolderPath { get; set; }
|
|
public MovieStatusType? MinimumAvailability { get; set; }
|
|
}
|
|
}
|