namespace PS.IPAM; using System; /// /// Represents an L2 domain in phpIPAM. /// [Serializable] public sealed record Domain( int Id, string Name, string Description, string Sections ) { public override string ToString() => Name; }