Files
alttpr-backend/ALttPRandomizer/Options/ServiceOptions.cs

14 lines
396 B
C#

namespace ALttPRandomizer.Options {
using System;
public class ServiceOptions {
public string PythonPath { get; set; } = null!;
public string RandomizerPath { get; set; } = null!;
public AzureSettings AzureSettings { get; set; } = new AzureSettings();
}
public class AzureSettings {
public Uri BlobstoreEndpoint { get; set; } = null!;
}
}