mirror of
https://github.com/8damon/Blackbird-Platform
synced 2026-06-21 13:41:12 +00:00
10 lines
309 B
C#
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;
|
|
}
|