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