summary refs log tree commit diff
path: root/Rhea/RheaConfiguration.cs
blob: 8b18fc7d2a6bd5889c9f08e503ee6dff7ea4482d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace Rhea;

public class RheaConfiguration
{
    public RheaConfiguration(IConfiguration config)
    {
        config.GetRequiredSection("Rhea").Bind(this);
    }
    
    public string StorePath { get; set; }
}