mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-11-09 16:14:11 +00:00
19 lines
308 B
Go
19 lines
308 B
Go
package model
|
|
|
|
type PostFormat struct {
|
|
Name string
|
|
Type string
|
|
}
|
|
|
|
type PostContext struct {
|
|
DefaultVisibility string
|
|
ReplyContext *ReplyContext
|
|
Formats []PostFormat
|
|
DarkMode bool
|
|
}
|
|
|
|
type ReplyContext struct {
|
|
InReplyToID string
|
|
InReplyToName string
|
|
ReplyContent string
|
|
}
|