public void Invite(PgUser other)
 {
     if (Membership.Contains(other))
         return;
     _manager.ChatroomInviteSend(new ChatroomInviteOut { _id = ChatroomId, toUser = other.ToUserBase(), });
 }