Iceshrimp.NET/Iceshrimp.Backend/Controllers/Pleroma/Schemas/Entities/PleromaEmojiEntity.cs
Kopper 44864a2274 [backend/akko-client] Try to implement GET v1/pleroma/emoji
Akkoma-FE is doing something horrible here, I do not think this is
fixable without changing the FE itself.
2024-09-13 17:30:05 +02:00

9 lines
No EOL
309 B
C#

using J = System.Text.Json.Serialization.JsonPropertyNameAttribute;
namespace Iceshrimp.Backend.Controllers.Pleroma.Schemas.Entities;
public class PleromaEmojiEntity
{
[J("image_url")] public required string ImageUrl { get; set; }
[J("tags")] public string[] Tags { get; set; } = [];
}