IW4M-Admin/SharedLibraryCore/Interfaces/IConfigurationHandler.cs

13 lines
294 B
C#
Raw Normal View History

2022-01-26 11:32:16 -05:00
using System.Threading.Tasks;
2018-04-08 02:44:42 -04:00
namespace SharedLibraryCore.Interfaces
{
public interface IConfigurationHandler<T> where T : IBaseConfiguration
{
2022-01-26 11:32:16 -05:00
string FileName { get; }
Task Save();
void Build();
T Configuration();
void Set(T config);
}
2022-01-26 11:32:16 -05:00
}