Cleaned up several classes
This commit is contained in:
13
src/Discord.Net.Audio/UserIsTalkingEventArgs.cs
Normal file
13
src/Discord.Net.Audio/UserIsTalkingEventArgs.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace Discord
|
||||
{
|
||||
public class UserIsSpeakingEventArgs : UserEventArgs
|
||||
{
|
||||
public bool IsSpeaking { get; }
|
||||
|
||||
public UserIsSpeakingEventArgs(User user, bool isSpeaking)
|
||||
: base(user)
|
||||
{
|
||||
IsSpeaking = isSpeaking;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user