PluralKit/Myriad/Types/GuildMember.cs

14 lines
310 B
C#
Raw Normal View History

namespace Myriad.Types;
public record GuildMember: GuildMemberPartial
2020-12-22 13:15:26 +01:00
{
public User User { get; init; }
}
2021-08-27 11:03:47 -04: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 13:15:26 +01:00
}