AssemblyTool/AssemblyRemapper/Models/AppSettingsModel.cs

18 lines
487 B
C#
Raw Normal View History

2024-06-11 19:18:48 -04:00
namespace AssemblyRemapper.Models;
/// <summary>
/// Remap config
/// </summary>
internal class AppSettings
{
public bool Debug { get; set; }
public bool SilentMode { get; set; }
2024-06-13 08:18:16 -04:00
public int MaxMatchCount { get; set; }
2024-06-11 19:18:48 -04:00
public bool ScoringMode { get; set; }
public bool Publicize { get; set; }
public bool Unseal { get; set; }
public string AssemblyPath { get; set; }
public string OutputPath { get; set; }
2024-06-12 00:05:59 -04:00
public string MappingPath { get; set; }
2024-06-11 19:18:48 -04:00
}