mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 07:13:58 -05:00
add configuration update callback for script plugins & update plugins to utilize
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
using System.Threading.Tasks;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SharedLibraryCore.Interfaces;
|
||||
|
||||
@ -7,4 +8,5 @@ public interface IConfigurationHandlerV2<TConfigurationType> where TConfiguratio
|
||||
Task<TConfigurationType> Get(string configurationName, TConfigurationType defaultConfiguration = null);
|
||||
Task Set(TConfigurationType configuration);
|
||||
Task Set();
|
||||
event Action<TConfigurationType> Updated;
|
||||
}
|
||||
|
Reference in New Issue
Block a user