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

12 lines
No EOL
502 B
C#

namespace Iceshrimp.Shared.Schemas.Web;
public class NoteCreateRequest
{
public required string Text { get; set; }
public string? Cw { get; set; }
public string? ReplyId { get; set; }
public string? RenoteId { get; set; }
public List<string>? MediaIds { get; set; }
public required NoteVisibility Visibility { get; set; }
public string? IdempotencyKey { get; set; }
}