feat(missions): common DTOs (UserMission, UserAchievement, BPMonthlyMission, MissionInfoData)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-05-27 10:30:29 -04:00
parent c9534d8fac
commit df65b7a9c8
5 changed files with 143 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
using System.Text.Json.Serialization;
using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Common.Mission;
/// <summary>
/// Inner reward block. STRING-typed on wire (capture confirms reward_type/reward_detail_id/
/// reward_number all serialize as JSON strings here, unlike UserMission where they're int).
/// </summary>
[MessagePackObject(keyAsPropertyName: true)]
public class BPMonthlyMissionRewardInfoDto
{
[Key(0)][JsonPropertyName("reward_type")] public string RewardType { get; set; } = "";
[Key(1)][JsonPropertyName("reward_detail_id")] public string RewardDetailId { get; set; } = "";
[Key(2)][JsonPropertyName("reward_number")] public string RewardNumber { get; set; } = "";
}
/// <summary>
/// One BP monthly mission. reward_info is OPTIONAL — capture shows "Play 5 Challenge matches"
/// has no reward_info block (only BP points). Global WhenWritingNull policy omits when null.
/// </summary>
[MessagePackObject(keyAsPropertyName: true)]
public class BPMonthlyMissionDto
{
[Key(0)][JsonPropertyName("name")] public string Name { get; set; } = "";
[Key(1)][JsonPropertyName("is_cleared")] public bool IsCleared { get; set; }
[Key(2)][JsonPropertyName("require_number")] public int RequireNumber { get; set; }
[Key(3)][JsonPropertyName("done_number")] public int DoneNumber { get; set; }
[Key(4)][JsonPropertyName("battle_pass_point")] public int BattlePassPoint { get; set; }
[Key(5)][JsonPropertyName("reward_info")] public BPMonthlyMissionRewardInfoDto? RewardInfo { get; set; }
}