22 lines
448 B
C#
22 lines
448 B
C#
namespace PS.IPAM;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
/// <summary>
|
|
/// Represents a VRF (Virtual Routing and Forwarding) instance in phpIPAM.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed record Vrf(
|
|
int Id,
|
|
string Name,
|
|
string RouteDistinguisher,
|
|
string Description,
|
|
string Sections,
|
|
DateTime? EditDate,
|
|
Dictionary<string, object>? ExtendedData = null
|
|
)
|
|
{
|
|
public override string ToString() => Name;
|
|
}
|