Add basic randomizer

This commit is contained in:
2025-02-22 13:01:35 -06:00
parent 6bdf0a67cb
commit c9407bd0bf
9 changed files with 127 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
namespace ALttPRandomizer.Options {
public class ServiceOptions {
public string PythonPath { get; set; } = null!;
public string RandomizerPath { get; set; } = null!;
}
}