Files
TheXamlGuy bc55c4649b tidy
2024-04-26 23:05:36 +01:00

8 lines
150 B
C#

namespace Toolkit.Foundation;
public interface IConfigurationFactory<TConfiguration>
where TConfiguration :
class
{
object Create();
}