feat : 보스 응답 메시지 문제 수정
This commit is contained in:
@@ -4,10 +4,39 @@ namespace MMOserver.Api;
|
||||
// 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; }
|
||||
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 Dictionary<string, string> Tokens
|
||||
{
|
||||
get;
|
||||
init;
|
||||
} = new();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user