IW4M-Admin/SharedLibraryCore/Interfaces/IConfigurationHandler.cs
2022-01-26 15:26:25 -06:00

13 lines
294 B
C#

using System.Threading.Tasks;
namespace SharedLibraryCore.Interfaces
{
public interface IConfigurationHandler<T> where T : IBaseConfiguration
{
string FileName { get; }
Task Save();
void Build();
T Configuration();
void Set(T config);
}
}