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

12 lines
274 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<CollectionUpdateCollectionResource> Collections { get; set; }
public bool? MonitorMovies { get; set; }
}
}