9 lines
161 B
C#
9 lines
161 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IConfiguration<out TConfiguration>
|
|
where TConfiguration :
|
|
class
|
|
{
|
|
TConfiguration Value { get; }
|
|
}
|