mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-08 06:47:56 +00:00
14 lines
317 B
C#
14 lines
317 B
C#
|
|
namespace Myriad.Types
|
|||
|
|
{
|
|||
|
|
public record GuildMember: GuildMemberPartial
|
|||
|
|
{
|
|||
|
|
public User User { get; init; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public record GuildMemberPartial
|
|||
|
|
{
|
|||
|
|
public string Nick { get; init; }
|
|||
|
|
public ulong[] Roles { get; init; }
|
|||
|
|
public string JoinedAt { get; init; }
|
|||
|
|
}
|
|||
|
|
}
|