19 lines
418 B
C#
19 lines
418 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Discord.API;
|
|
|
|
internal class SupplementalGuildUser
|
|
{
|
|
[JsonProperty("member")]
|
|
public GuildMember Member { get; set; }
|
|
|
|
[JsonProperty("source_invite_code")]
|
|
public string InviteCode { get; set; }
|
|
|
|
[JsonProperty("join_source_type")]
|
|
public JoinSourceType JoinSourceType { get; set; }
|
|
|
|
[JsonProperty("inviter_id")]
|
|
public ulong? InviterId { get; set; }
|
|
}
|