Refactor...

This commit is contained in:
TheXamlGuy
2024-01-09 22:42:55 +00:00
parent 05b404d504
commit a17dca0f2f
17 changed files with 176 additions and 143 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace Hyperbar;
public interface IConfiguration<out TConfiguration>
where TConfiguration :
class, new()
{
TConfiguration Value { get; }
}