
Akkoma-FE is doing something horrible here, I do not think this is fixable without changing the FE itself.
9 lines
No EOL
309 B
C#
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; } = [];
|
|
} |