IW4M-Admin/SharedLibraryCore/Interfaces/IBaseConfiguration.cs
2022-01-28 09:35:01 -06:00

9 lines
160 B
C#

namespace SharedLibraryCore.Interfaces
{
public interface IBaseConfiguration
{
string Name();
IBaseConfiguration Generate();
}
}