UpdateSettings bugfix

ISettingControl introduction
This commit is contained in:
Pavel Vesely
2021-01-05 19:52:14 +01:00
parent a9a66155e2
commit 91c5ff7b00
2 changed files with 19 additions and 8 deletions

View File

@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace Oqtane.Interfaces
{
public interface ISettingsControl
{
Task UpdateSettings();
}
}