feat(svc): IArenaTwoPickService + response DTOs + GetTopAsync

6 response DTOs, IArenaTwoPickService interface + ArenaTwoPickException,
ArenaTwoPickService skeleton with GetTopAsync implemented and stubs for
Tasks 13-15. 3 NUnit tests for GetTopAsync all pass. DI: AddScoped.
This commit is contained in:
gamer147
2026-05-31 10:51:41 -04:00
parent a98b60dd36
commit ba49852c42
10 changed files with 334 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System.Text.Json.Serialization;
using MessagePack;
using SVSim.EmulatedEntrypoint.Models.Dtos.Common.ArenaTwoPick;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Responses.ArenaTwoPick;
[MessagePackObject]
public class ClassChooseResponseDto
{
[JsonPropertyName("class_info")] [Key("class_info")]
public ClassInfoDto ClassInfo { get; set; } = new();
[JsonPropertyName("deck_info")] [Key("deck_info")]
public DeckInfoDto DeckInfo { get; set; } = new();
[JsonPropertyName("candidate_card_list")] [Key("candidate_card_list")]
public List<CandidatePairDto> CandidateCardList { get; set; } = new();
}