mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
15 lines
No EOL
356 B
C#
15 lines
No EOL
356 B
C#
namespace Myriad.Types
|
|
{
|
|
public record GuildMember: GuildMemberPartial
|
|
{
|
|
public User User { get; init; }
|
|
}
|
|
|
|
public record GuildMemberPartial
|
|
{
|
|
public string? Avatar { get; init; }
|
|
public string? Nick { get; init; }
|
|
public ulong[] Roles { get; init; }
|
|
public string JoinedAt { get; init; }
|
|
}
|
|
} |