Added RPC ChannelCreated, GuildCreated and GuildStatusUpdated events
This commit is contained in:
14
src/Discord.Net.Rpc/API/Rpc/ChannelCreatedEvent.cs
Normal file
14
src/Discord.Net.Rpc/API/Rpc/ChannelCreatedEvent.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Discord.API.Rpc
|
||||
{
|
||||
public class ChannelCreatedEvent
|
||||
{
|
||||
[JsonProperty("id")]
|
||||
public ulong Id { get; set; }
|
||||
[JsonProperty("name")]
|
||||
public string Name { get; set; }
|
||||
[JsonProperty("type")]
|
||||
public ChannelType Type { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user