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