mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
10 lines
No EOL
244 B
C#
10 lines
No EOL
244 B
C#
using Myriad.Types;
|
|
|
|
namespace Myriad.Extensions
|
|
{
|
|
public static class UserExtensions
|
|
{
|
|
public static string AvatarUrl(this User user) =>
|
|
$"https://cdn.discordapp.com/avatars/{user.Id}/{user.Avatar}.png";
|
|
}
|
|
} |