using System.Collections.Generic; namespace Trash.Sonarr.ReleaseProfile { public class ProfileData { public List Required { get; } = new(); public List Ignored { get; } = new(); public Dictionary> 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; } } }