This commit is contained in:
gamer147
2026-05-25 12:03:47 -04:00
parent d067f8a64a
commit 558e8288eb
44 changed files with 6512 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.BasicPuzzle;
[MessagePackObject]
public class StartRequest : BaseRequest
{
[JsonPropertyName("puzzle_id")]
[Key("puzzle_id")]
public int PuzzleId { get; set; }
}