bloat/model/postContext.go

13 lines
198 B
Go
Raw Normal View History

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