Create all interaction models

This commit is contained in:
Daan Boerlage 2021-09-20 01:28:26 +02:00
parent 209887e237
commit 60547140ea
Signed by: daan
GPG key ID: FCE070E1E4956606
59 changed files with 1589 additions and 222 deletions

View file

@ -0,0 +1,16 @@
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; }
}
}