13 lines
278 B
C#
13 lines
278 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Discord.API.Gateway
|
|
{
|
|
public class RemoveAllReactionsEvent
|
|
{
|
|
[JsonProperty("channel_id")]
|
|
public ulong ChannelId { get; set; }
|
|
[JsonProperty("message_id")]
|
|
public ulong MessageId { get; set; }
|
|
}
|
|
}
|