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