22 lines
362 B
C#
22 lines
362 B
C#
namespace PS.IPAM;
|
|
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// Represents an address tag in phpIPAM.
|
|
/// </summary>
|
|
[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;
|
|
}
|