9 lines
160 B
C#
Raw Permalink Normal View History

2022-01-26 10:32:16 -06:00
namespace SharedLibraryCore.Interfaces
{
public interface IBaseConfiguration
{
string Name();
IBaseConfiguration Generate();
}
2022-01-28 09:35:01 -06:00
}