bloat/model/postContext.go

13 lines
198 B
Go

package model
type PostContext struct {
DefaultVisibility string
ReplyContext *ReplyContext
}
type ReplyContext struct {
InReplyToID string
InReplyToName string
ReplyContent string
}