summary refs log tree commit diff
path: root/Rhea/RheaConfiguration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Rhea/RheaConfiguration.cs')
-rw-r--r--Rhea/RheaConfiguration.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Rhea/RheaConfiguration.cs b/Rhea/RheaConfiguration.cs
new file mode 100644

index 0000000..8b18fc7 --- /dev/null +++ b/Rhea/RheaConfiguration.cs
@@ -0,0 +1,11 @@ +namespace Rhea; + +public class RheaConfiguration +{ + public RheaConfiguration(IConfiguration config) + { + config.GetRequiredSection("Rhea").Bind(this); + } + + public string StorePath { get; set; } +} \ No newline at end of file