Files
alttpr-backend/ALttPRandomizer/Options/ServiceOptions.cs
2025-03-02 00:22:50 -06:00

18 lines
610 B
C#

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();
}
public class AzureSettings {
public string? ClientId { get; set; }
public Uri BlobstoreEndpoint { get; set; } = null!;
}
}