20 lines
262 B
C#
20 lines
262 B
C#
namespace PS.IPAM;
|
|
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// Represents the model types returned by the phpIPAM API.
|
|
/// </summary>
|
|
[Serializable]
|
|
public enum ModelType
|
|
{
|
|
Address,
|
|
Domain,
|
|
Section,
|
|
Subnetwork,
|
|
Nameserver,
|
|
Tag,
|
|
Vlan,
|
|
Vrf
|
|
}
|