feat(mission): /mission/receive_reward stub (refresh-only, no decomp)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-06-12 23:33:50 -04:00
parent e54e63a762
commit 025c2a8c56
3 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.Mission;
/// <summary>
/// INFERRED shape — the spec at docs/api-spec/endpoints/post-login/mission-receive-reward.md
/// flags this as not present in the client decompilation. Almost certainly an id of the
/// mission to claim.
/// </summary>
[MessagePackObject]
public class MissionReceiveRewardRequest : BaseRequest
{
[JsonPropertyName("id")]
[Key("id")]
public long Id { get; set; }
}