mirror of
https://github.com/spacebarchat/server.git
synced 2026-06-07 17:31:47 +00:00
11 lines
244 B
C#
11 lines
244 B
C#
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Spacebar.Tests;
|
|
|
|
public class Config {
|
|
public Config(IConfiguration? config) {
|
|
config.GetSection("Configuration").Bind(this);
|
|
}
|
|
|
|
public string TestInstance { get; set; }
|
|
} |