Three endpoints + 9 integration tests. Captured-data-is-catalog: viewer's achievement Level starts at MIN(Level) per type from the catalog (not 1), so the assembler always has a row to render against. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
14 lines
383 B
C#
14 lines
383 B
C#
using System.Text.Json.Serialization;
|
|
using MessagePack;
|
|
using SVSim.EmulatedEntrypoint.Models.Dtos.Requests;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Mission;
|
|
|
|
[MessagePackObject]
|
|
public class MissionChangeReceiveSettingRequest : BaseRequest
|
|
{
|
|
[Key("mission_receive_type")]
|
|
[JsonPropertyName("mission_receive_type")]
|
|
public int MissionReceiveType { get; set; }
|
|
}
|