16 lines
No EOL
381 B
C#
16 lines
No EOL
381 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Geekbot.Core.Interactions.Resolved
|
|
{
|
|
public struct Reaction
|
|
{
|
|
[JsonPropertyName("count")]
|
|
public int Count { get; set; }
|
|
|
|
[JsonPropertyName("me")]
|
|
public bool Me { get; set; }
|
|
|
|
[JsonPropertyName("emoji")]
|
|
public Emoji emoji { get; set; }
|
|
}
|
|
} |