mirror of
https://github.com/spacebarchat/server.git
synced 2026-07-01 02:51:52 +00:00
12 lines
297 B
C#
12 lines
297 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; }
|
|
public int RegisterConcurrentCount { get; set; }
|
|
} |