namespace SVSim.EmulatedEntrypoint.Matching; /// /// Cosmetic + identity metadata for an AI opponent. Used to compose /// oppo_info in the /ai_<fmt>_rank_battle/start response. /// The wire keys are camelCase (sleeveId, emblemId, etc.) — the DTO handles /// the JSON serialization; this record is the internal-facing shape. /// public sealed record AIBotProfile( int AiId, string CountryCode, string UserName, int SleeveId, int EmblemId, int DegreeId, int FieldId, int IsOfficial, int ClassId, int CharaId, int Rank, int BattlePoint, int IsMasterRank, int MasterPoint);