about summary refs log tree commit diff
path: root/Utilities/LibMatrix.FederationTest/Services/FederationTestConfiguration.cs
blob: 353ddf53cb9e9829c3e04d5018c9db4d0173e689 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace LibMatrix.FederationTest.Services;

public class FederationTestConfiguration {
    public FederationTestConfiguration(IConfiguration configurationSection) {
        configurationSection.GetRequiredSection("FederationTest").Bind(this);
    }
    
    public string ServerName { get; set; } = "localhost";
    public string KeyStorePath { get; set; } = "./.keys";
}