Use main feature pattern with InfoPrint

This commit is contained in:
Matt Nadareski
2025-10-07 10:20:57 -04:00
parent 9f1c5e2bd2
commit d3a7d552c3
4 changed files with 315 additions and 270 deletions

View File

@@ -37,12 +37,12 @@ namespace ExtractionTool.Features
/// <summary>
/// Enable debug output for relevant operations
/// </summary>
public bool Debug { get; set; }
public bool Debug { get; private set; }
/// <summary>
/// Output path for archive extraction
/// </summary>
public string OutputPath { get; set; } = string.Empty;
public string OutputPath { get; private set; } = string.Empty;
#endregion