Iceshrimp.NET/Iceshrimp.Shared/Schemas/UpdateEmojiRequest.cs
2024-06-29 01:09:02 +02:00

9 lines
No EOL
252 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; }
}