namespace AcDream.Core.Net; /// /// Immutable network-owned input for retail's link-status presentation. /// records the last successfully decoded server /// datagram; UI code applies retail's display thresholds and cadence. /// public readonly record struct LinkStatusSnapshot( bool Connected, double SecondsSinceLastPacket, double PacketLossPercentage = 0d, double? RoundTripSeconds = null) { public static LinkStatusSnapshot Disconnected => new(false, 0d); }