using ReCodeItLib.Utils; namespace ReCodeItLib.Models; /// /// All settings container /// public class Settings { /// /// Path to the mapping file /// public string MappingPath { get; set; } = string.Empty; /// /// The re-mapper will look for these classes, otherwise they will be skipped /// public required List TypeNamesToMatch { get; set; } /// /// List of method names to be ignored during the auto-match process. /// public required List MethodNamesToIgnore { get; set; } /// /// List of method names to be ignored during the auto-match process. /// public required List FieldNamesToIgnore { get; set; } }