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.
recyclarr/src/Trash/Sonarr/ReleaseProfile/ProfileData.cs

18 lines
700 B

using System.Collections.Generic;
namespace Trash.Sonarr.ReleaseProfile
{
public class ProfileData
{
public List<string> Required { get; } = new();
public List<string> Ignored { get; } = new();
public Dictionary<int, List<string>> Preferred { get; } = new();
// We use 'null' here to represent no explicit mention of the "include preferred" string
// found in the markdown. We use this to control whether or not the corresponding profile
// section gets printed in the first place, or if we modify the existing setting for
// existing profiles on the server.
public bool? IncludePreferredWhenRenaming { get; set; }
}
}