10 lines
277 B
C#
10 lines
277 B
C#
using HanaToolbox.Config;
|
|
|
|
namespace HanaToolbox.Services.Interfaces;
|
|
|
|
public interface IFirewallService
|
|
{
|
|
/// <summary>Applies the saved firewall config non-interactively (cron mode).</summary>
|
|
Task ApplyAsync(FirewallConfig config, CancellationToken ct = default);
|
|
}
|