8 lines
236 B
C#
8 lines
236 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SVSim.BattleNode.Protocol.Bodies;
|
|
|
|
public sealed record AlivePushBody(
|
|
[property: JsonPropertyName("scs")] string Scs,
|
|
[property: JsonPropertyName("ocs")] string Ocs) : IMsgBody;
|