first working types

This commit is contained in:
2022-12-06 17:20:45 +03:00
parent a1b03b81c0
commit 7d0d1b53ae
14 changed files with 129 additions and 75 deletions

View File

@@ -1,6 +1,7 @@
namespace PS.IPAM;
using System;
[Serializable]
public enum methods {
GET,
POST,

View File

@@ -1,12 +1,13 @@
namespace PS.IPAM;
using System;
[Serializable]
public enum types {
address,
domain,
section,
subnetwork,
tag,
vlan,
vrf
Address,
Domain,
Section,
Subnetwork,
Tag,
Vlan,
Vrf
}