Files
SVSimServer/SVSim.BattleNode/Protocol/Bodies/AlivePushBody.cs

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;