IW4M-Admin/SharedLibraryCore/Interfaces/IConfigurationHandler.cs

14 lines
300 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();
2022-01-28 10:35:01 -05:00
Task BuildAsync();
T Configuration();
void Set(T config);
}
2022-01-28 10:35:01 -05:00
}