Remove RPC from main distribution (#925)
This commit is contained in:
14
experiment/Discord.Net.Rpc/API/Rpc/ChannelSummary.cs
Normal file
14
experiment/Discord.Net.Rpc/API/Rpc/ChannelSummary.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Discord.API.Rpc
|
||||
{
|
||||
internal class ChannelSummary
|
||||
{
|
||||
[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