9 lines
151 B
C#
9 lines
151 B
C#
namespace Hyperbar;
|
|
|
|
public interface IConfiguration<out TConfiguration>
|
|
where TConfiguration :
|
|
class
|
|
{
|
|
TConfiguration Value { get; }
|
|
}
|