oqtane.framework/Oqtane.Shared/Interfaces/ISettingsControl.cs
Pavel Vesely 91c5ff7b00 UpdateSettings bugfix
ISettingControl introduction
2021-01-05 19:52:14 +01:00

10 lines
147 B
C#

using System.Threading.Tasks;
namespace Oqtane.Interfaces
{
public interface ISettingsControl
{
Task UpdateSettings();
}
}