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.

MessageDeleteBulkEvent.cs 341 B

1234567891011121314
  1. #pragma warning disable CS1591
  2. using Discord.Serialization;
  3. using System.Collections.Generic;
  4. namespace Discord.API.Gateway
  5. {
  6. internal class MessageDeleteBulkEvent
  7. {
  8. [ModelProperty("channel_id")]
  9. public ulong ChannelId { get; set; }
  10. [ModelProperty("ids")]
  11. public ulong[] Ids { get; set; }
  12. }
  13. }