mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
14 lines
300 B
C#
14 lines
300 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
public interface IConfigurationHandler<T> where T : IBaseConfiguration
|
|
{
|
|
string FileName { get; }
|
|
Task Save();
|
|
Task BuildAsync();
|
|
T Configuration();
|
|
void Set(T config);
|
|
}
|
|
}
|