replaced hardcoded text by enums in some functions

This commit is contained in:
2022-12-05 17:48:20 +03:00
parent 4fc6bac4b5
commit a1b03b81c0
4 changed files with 39 additions and 27 deletions

12
classlib/enum/types.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace PS.IPAM;
using System;
public enum types {
address,
domain,
section,
subnetwork,
tag,
vlan,
vrf
}