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 tokens in class names, otherwise they will be skipped
///
public required List TokensToMatch { get; set; }
}