14 lines
284 B
C#
14 lines
284 B
C#
namespace Discord
|
|
{
|
|
public class UserIsSpeakingEventArgs : UserEventArgs
|
|
{
|
|
public bool IsSpeaking { get; }
|
|
|
|
public UserIsSpeakingEventArgs(User user, bool isSpeaking)
|
|
: base(user)
|
|
{
|
|
IsSpeaking = isSpeaking;
|
|
}
|
|
}
|
|
}
|