21 lines
338 B
Go
21 lines
338 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
|
|
ReplyContent string
|
|
ForceVisibility bool
|
|
}
|