You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/Lidarr.Api.V1/ManualImport/ManualImportUpdateResource.cs

29 lines
1004 B

using System.Collections.Generic;
using Lidarr.Api.V1.Tracks;
using Lidarr.Http.REST;
using NzbDrone.Core.DecisionEngine;
using NzbDrone.Core.Qualities;
namespace Lidarr.Api.V1.ManualImport
{
public class ManualImportUpdateResource : RestResource
{
public string Path { get; set; }
public string Name { get; set; }
public int? ArtistId { get; set; }
public int? AlbumId { get; set; }
public int? AlbumReleaseId { get; set; }
public List<TrackResource> Tracks { get; set; }
public List<int> TrackIds { get; set; }
public QualityModel Quality { get; set; }
public string ReleaseGroup { get; set; }
public int IndexerFlags { get; set; }
public string DownloadId { get; set; }
public bool AdditionalFile { get; set; }
public bool ReplaceExistingFiles { get; set; }
public bool DisableReleaseSwitching { get; set; }
public IEnumerable<Rejection> Rejections { get; set; }
}
}