ChatParticipant.cs 122 B

123456
  1. namespace Application.Abstractions.Chat;
  2. public sealed record ChatParticipant(
  3. string MemberName,
  4. bool IsGuest
  5. );