mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-09 15:27:54 +00:00
9 lines
193 B
C#
9 lines
193 B
C#
|
|
namespace Myriad.Types
|
|||
|
|
{
|
|||
|
|
public record Emoji
|
|||
|
|
{
|
|||
|
|
public ulong? Id { get; init; }
|
|||
|
|
public string? Name { get; init; }
|
|||
|
|
public bool? Animated { get; init; }
|
|||
|
|
}
|
|||
|
|
}
|