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

19 lines
470 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 tokens in class names, otherwise they will be skipped
2024-06-17 19:14:47 -04:00
/// </summary>
public required List<string> TokensToMatch { get; set; }
2024-06-11 19:18:48 -04:00
}