9 lines
160 B
C#
9 lines
160 B
C#
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
public interface IBaseConfiguration
|
|
{
|
|
string Name();
|
|
IBaseConfiguration Generate();
|
|
}
|
|
}
|