IW4M-Admin/SharedLibraryCore/Interfaces/IBaseConfiguration.cs
2018-04-08 01:44:42 -05:00

15 lines
277 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharedLibraryCore.Interfaces
{
public interface IBaseConfiguration
{
string Name();
IBaseConfiguration Generate();
}
}