allow host to change runtime and rendermode settings in System Info

This commit is contained in:
Shaun Walker
2021-06-06 11:04:37 -04:00
parent 900ea8cfbc
commit 54cd360bb5
4 changed files with 53 additions and 4 deletions

View File

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Oqtane.Services
@ -6,5 +6,7 @@ namespace Oqtane.Services
public interface ISystemService
{
Task<Dictionary<string, string>> GetSystemInfoAsync();
Task UpdateSystemInfoAsync(Dictionary<string, string> settings);
}
}