Radarr/src/Radarr.Api.V3/Collections/CollectionUpdateResource.cs

13 lines
290 B
C#
Raw Normal View History

2022-03-08 02:03:00 +00:00
using System;
using System.Collections.Generic;
namespace Radarr.Api.V3.Collections
{
public class CollectionUpdateResource
{
public List<int> CollectionIds { get; set; }
public bool? Monitored { get; set; }
2022-03-08 02:03:00 +00:00
public bool? MonitorMovies { get; set; }
}
}