feat(http): ArenaTwoPickBattleController (do_matching stub + finish)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.ArenaTwoPick;
|
||||
|
||||
[MessagePackObject]
|
||||
public class BattleFinishRequest
|
||||
{
|
||||
[JsonPropertyName("class_id")] [Key("class_id")] public int ClassId { get; set; }
|
||||
[JsonPropertyName("total_turn")] [Key("total_turn")] public int TotalTurn { get; set; }
|
||||
[JsonPropertyName("evolve_count")] [Key("evolve_count")] public int EvolveCount { get; set; }
|
||||
[JsonPropertyName("enemy_evolve_count")] [Key("enemy_evolve_count")] public int EnemyEvolveCount { get; set; }
|
||||
[JsonPropertyName("battle_result")] [Key("battle_result")] public int BattleResult { get; set; }
|
||||
[JsonPropertyName("is_retire")] [Key("is_retire")] public int IsRetire { get; set; }
|
||||
[JsonPropertyName("SDTRB")] [Key("SDTRB")] public int Sdtrb { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.ArenaTwoPick;
|
||||
|
||||
[MessagePackObject]
|
||||
public class DoMatchingRequest
|
||||
{
|
||||
[JsonPropertyName("card_master_hash")] [Key("card_master_hash")] public string? CardMasterHash { get; set; }
|
||||
[JsonPropertyName("deck_no")] [Key("deck_no")] public long DeckNo { get; set; }
|
||||
[JsonPropertyName("need_init")] [Key("need_init")] public int NeedInit { get; set; }
|
||||
[JsonPropertyName("log")] [Key("log")] public int Log { get; set; }
|
||||
[JsonPropertyName("excluded_field_id_list")] [Key("excluded_field_id_list")] public List<long> ExcludedFieldIdList { get; set; } = new();
|
||||
[JsonPropertyName("use_stage_select")] [Key("use_stage_select")] public int UseStageSelect { get; set; }
|
||||
[JsonPropertyName("is_default_skin")] [Key("is_default_skin")] public int IsDefaultSkin { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user