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.

RequestMembersParams.cs 414 B

1234567891011121314151617
  1. #pragma warning disable CS1591
  2. using Discord.Serialization;
  3. using System.Collections.Generic;
  4. namespace Discord.API.Gateway
  5. {
  6. internal class RequestMembersParams
  7. {
  8. [ModelProperty("query")]
  9. public string Query { get; set; }
  10. [ModelProperty("limit")]
  11. public int Limit { get; set; }
  12. [ModelProperty("guild_id")]
  13. public ulong[] GuildIds { get; set; }
  14. }
  15. }