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

29 lines
820 B
C#
Raw Normal View History

2024-12-31 13:46:44 -05:00
using ReCodeItLib.Utils;
2024-12-31 13:46:44 -05:00
namespace ReCodeItLib.Models;
2024-06-11 19:18:48 -04:00
/// <summary>
2024-06-17 18:19:17 -04:00
/// All settings container
2024-06-11 19:18:48 -04:00
/// </summary>
2024-06-13 18:15:52 -04:00
public class Settings
2024-06-13 17:55:06 -04:00
{
2024-06-17 19:14:47 -04:00
/// <summary>
/// Path to the mapping file
/// </summary>
public string MappingPath { get; set; } = string.Empty;
2024-06-17 19:14:47 -04:00
/// <summary>
/// The re-mapper will look for these classes, otherwise they will be skipped
2024-06-17 19:14:47 -04:00
/// </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; }
2024-06-11 19:18:48 -04:00
}