You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

MessageEvent.cs 292 B

123456789101112
  1. #pragma warning disable CS1591
  2. using Newtonsoft.Json;
  3. namespace Discord.API.Rpc
  4. {
  5. internal class MessageEvent
  6. {
  7. [JsonProperty("channel_id")]
  8. public ulong ChannelId { get; set; }
  9. [JsonProperty("message")]
  10. public Message Message { get; set; }
  11. }
  12. }