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/NzbDrone.Core/MediaFiles/TrackImport/ImportArtistDefaults.cs

15 lines
414 B

using System.Collections.Generic;
using NzbDrone.Core.Music;
namespace NzbDrone.Core.MediaFiles.TrackImport
{
public class ImportArtistDefaults
{
public int MetadataProfileId { get; set; }
public int LanguageProfileId { get; set; }
public int QualityProfileId { get; set; }
public MonitorTypes Monitored { get; set; }
public HashSet<int> Tags { get; set; }
}
}