feat : 보스레이드 신청 메시지 응답 패킷 구현

This commit is contained in:
qornwh1
2026-03-16 19:19:59 +09:00
parent f6b378cad7
commit dd8dcc58d2
4 changed files with 52 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
namespace MMOserver.Api;
// RestApi.BossRaidAccesssAsync 반환용 도메인 모델
// API 응답(BossRaidAccessResponse)을 직접 노출하지 않고 이걸로 매핑해서 반환
public sealed class BossRaidResult
{
public int RoomId { get; init; }
public string SessionName { get; init; } = string.Empty;
public int BossId { get; init; }
public List<string> Players { get; init; } = new();
public string Status { get; init; } = string.Empty;
public string? Tokens { get; init; }
}