IW4M-Admin/SharedLibraryCore/Interfaces/IConfigurationHandler.cs

14 lines
300 B
C#
Raw Normal View History

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