2018-03-18 22:25:11 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
2018-03-18 22:25:11 -04:00
|
|
|
|
{
|
|
|
|
|
public interface IConfigurationHandler<T> where T : IBaseConfiguration
|
|
|
|
|
{
|
|
|
|
|
Task Save();
|
|
|
|
|
void Build();
|
|
|
|
|
T Configuration();
|
|
|
|
|
void Set(T config);
|
|
|
|
|
}
|
|
|
|
|
}
|