Iceshrimp.NET/Iceshrimp.Shared/Schemas/UpdateEmojiRequest.cs

9 lines
No EOL
264 B
C#

namespace Iceshrimp.Shared.Schemas;
public class UpdateEmojiRequest
{
public string? Name { get; set; }
public List<string>? Aliases { get; set; }
public string? Category { get; set; }
public string? License { get; set; }
}