PluralKit/Myriad/Types/GuildMember.cs

14 lines
313 B
C#
Raw Normal View History

namespace Myriad.Types;
public record GuildMember: GuildMemberPartial
2020-12-22 12:15:26 +00:00
{
public User User { get; init; }
}
2021-08-27 15:03:47 +00:00
public record GuildMemberPartial
{
public string? Avatar { get; init; }
public string? Nick { get; init; }
public ulong[] Roles { get; init; }
// public string JoinedAt { get; init; }
2020-12-22 12:15:26 +00:00
}