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