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.
Readarr/src/NzbDrone.Core/Profiles/Metadata/MetadataProfile.cs

24 lines
706 B

using System.Collections.Generic;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Profiles.Metadata
{
public class MetadataProfile : ModelBase
{
public string Name { get; set; }
public double MinPopularity { get; set; }
public bool SkipMissingDate { get; set; }
public bool SkipMissingIsbn { get; set; }
public bool SkipPartsAndSets { get; set; }
public bool SkipSeriesSecondary { get; set; }
public string AllowedLanguages { get; set; }
public int MinPages { get; set; }
public List<string> Ignored { get; set; }
public MetadataProfile()
{
Ignored = new List<string>();
}
}
}