Iceshrimp.NET/Iceshrimp.Shared/Schemas/NoteCreateRequest.cs

12 lines
No EOL
498 B
C#

namespace Iceshrimp.Shared.Schemas;
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; }
}