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