Declare VirtualInterfaceNames as string array for consistency

This commit is contained in:
Shadowghost
2022-10-01 20:00:35 +02:00
parent 4fc52a840c
commit bd9a940fed
3 changed files with 21 additions and 14 deletions

View File

@@ -114,7 +114,7 @@ public class CreateNetworkConfiguration : IMigrationRoutine
public bool IgnoreVirtualInterfaces { get; set; } = true;
public string VirtualInterfaceNames { get; set; } = "veth";
public string[] VirtualInterfaceNames { get; set; } = new string[] { "veth" };
public string[] PublishedServerUriBySubnet { get; set; } = Array.Empty<string>();