Iceshrimp.NET/Iceshrimp.Shared/Schemas/Web/UpdateEmojiRequest.cs
2024-07-04 17:53:11 +02:00

9 lines
No EOL
256 B
C#

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