Files
CRSim/CRSim.Core/Models/CommandLineOptions.cs
2025-07-12 09:04:53 +08:00

9 lines
179 B
C#

namespace CRSim.Core.Models
{
public class CommandLineOptions
{
public string? ExternalPluginPath { get; set; }
public bool Debug { get; set; }
}
}