using System.Collections.Generic;
using System.Threading.Tasks;
namespace Oqtane.Services
{
///
/// Service to retrieve and update system information.
///
public interface ISystemService
{
///
/// returns a key-value directory with the current system information (os-version, clr-version, etc.)
///
///
Task> GetSystemInfoAsync();
///
/// Updates system information
///
///
///
Task UpdateSystemInfoAsync(Dictionary settings);
}
}