This commit is contained in:
2025-03-02 00:22:50 -06:00
parent 55d7317022
commit 69eeb8c53b
2 changed files with 15 additions and 3 deletions

View File

@@ -1,10 +1,12 @@
namespace ALttPRandomizer.Options {
using System;
using System.Collections.Generic;
public class ServiceOptions {
public string Baserom { get; set; } = null!;
public string PythonPath { get; set; } = null!;
public string RandomizerPath { get; set; } = null!;
public IList<string> AllowedCors { get; set; } = new List<string>();
public AzureSettings AzureSettings { get; set; } = new AzureSettings();
}