PluralKit/Myriad/Types/GuildMember.cs

15 lines
356 B
C#
Raw Normal View History

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