AssemblyTool/AssemblyRemapper/Models/AppSettingsModel.cs
2024-06-12 00:05:59 -04:00

18 lines
445 B
C#

namespace AssemblyRemapper.Models;
/// <summary>
/// Remap config
/// </summary>
internal class AppSettings
{
public bool Debug { get; set; }
public bool SilentMode { get; set; }
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; }
public string MappingPath { get; set; }
}