Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/Responses/Practice/PracticeStartResponse.cs
2026-05-23 15:47:23 -04:00

17 lines
569 B
C#

using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Responses.Practice;
[MessagePackObject]
public class PracticeStartResponse
{
/// <summary>
/// Optional mission/achievement evaluation snapshot. Spec: safe to omit entirely;
/// client tolerates absence (defensive `Keys.Contains` check). Always null in our
/// minimal impl 窶・we don't model missions.
/// </summary>
[JsonPropertyName("mission_parameter")]
[Key("mission_parameter")] public object? MissionParameter { get; set; }
}