namespace PS.IPAM; using System; /// /// Represents an address tag in phpIPAM. /// [Serializable] public sealed record Tag( int Id, string Type, bool ShowTag, string BackgroundColor, string ForegroundColor, string Compress, string Locked, bool UpdateTag ) { public override string ToString() => Type; }