ChatParticipant.cs 391 B

1234567891011
  1. namespace Application.Abstractions.Chat;
  2. // SignalR JSON 프로토콜 camelCase(첫 글자만 소문자) → 프론트 키는 memberName/isGuest/sid/icon/level.
  3. // (all-caps SID 는 sID 로 직렬화돼 혼동을 유발하므로 DTO 속성은 Sid 로 둔다)
  4. public sealed record ChatParticipant(
  5. string MemberName,
  6. bool IsGuest,
  7. string? Sid,
  8. string? Icon,
  9. int Level
  10. );