Files
8damon-Blackbird-Platform/Client/host/Models/OperatorDiscoveryOptions.cs
T
2026-04-03 14:23:15 +10:00

10 lines
309 B
C#

namespace BlackbirdOperator.Models;
public sealed class OperatorDiscoveryOptions
{
public bool EnablePassiveDiscovery { get; init; } = true;
public bool EnableActiveSubnetProbe { get; init; }
public string? PreferredInterfaceId { get; init; }
public int MaxProbeHosts { get; init; } = 256;
}