blob: 41254cb6d1bf30fbfdf1e165f0e88c78228ec2b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using Microsoft.Extensions.Configuration;
namespace Spacebar.Tests;
public class Config {
public Config(IConfiguration? config) {
config.GetSection("Configuration").Bind(this);
}
public string TestInstance { get; set; }
public int RegisterConcurrentCount { get; set; }
public bool OfflineMode { get; set; }
}
|