0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 05:50:45 -05:00
assembly-tool/RecodeItLib/Models/AppSettingsModel.cs

29 lines
820 B
C#

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