mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-01 02:57:17 +00:00
23 lines
384 B
Go
23 lines
384 B
Go
package model
|
|
|
|
type PostFormat struct {
|
|
Name string
|
|
Type string
|
|
}
|
|
|
|
type PostContext struct {
|
|
DefaultVisibility string
|
|
DefaultFormat string
|
|
ReplyContext *ReplyContext
|
|
Formats []PostFormat
|
|
}
|
|
|
|
type ReplyContext struct {
|
|
InReplyToID string
|
|
InReplyToName string
|
|
QuickReply bool
|
|
ReplySpoiler string
|
|
ReplyContent string
|
|
ForceVisibility bool
|
|
}
|