10 lines
248 B
C#
10 lines
248 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public class ConfigurationFactory<TConfiguration>(Func<TConfiguration> factory) :
|
|
IConfigurationFactory<TConfiguration>
|
|
where TConfiguration :
|
|
class
|
|
{
|
|
public object Create() => factory.Invoke();
|
|
}
|