Iceshrimp.NET/Iceshrimp.Shared/Schemas/Web/UpdateEmojiRequest.cs
2024-10-04 00:36:38 +02:00

10 lines
No EOL
306 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; }
public bool? Sensitive { get; set; }
}