Iceshrimp.NET/Iceshrimp.Backend/Controllers/Schemas/NoteCreateRequest.cs
2024-02-18 03:09:19 +01:00

10 lines
No EOL
339 B
C#

using J = System.Text.Json.Serialization.JsonPropertyNameAttribute;
namespace Iceshrimp.Backend.Controllers.Schemas;
public class NoteCreateRequest
{
[J("text")] public required string Text { get; set; }
[J("cw")] public string? Cw { get; set; }
[J("replyId")] public string? ReplyId { get; set; }
}