19 lines
480 B
C#
19 lines
480 B
C#
#pragma warning disable CS1591
|
|
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Discord.API.Gateway
|
|
{
|
|
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
|
|
public class RequestMembersParams
|
|
{
|
|
[JsonProperty("query")]
|
|
public string Query { get; set; }
|
|
[JsonProperty("limit")]
|
|
public int Limit { get; set; }
|
|
|
|
[JsonProperty("guild_id")]
|
|
public IEnumerable<ulong> GuildIds { get; set; }
|
|
}
|
|
}
|