namespace SVSim.BattleNode.Protocol;
///
/// Wraps a parsed-dictionary body for the inbound path.
/// returns this; flattens back to
/// top-level keys when echoing.
///
public sealed class RawBody : IMsgBody
{
public Dictionary Entries { get; }
public RawBody(Dictionary entries)
{
Entries = entries;
}
}