2019-12-21 10:36:44 +02:00
|
|
|
package model
|
|
|
|
|
2019-12-21 15:26:31 +02:00
|
|
|
type PostContext struct {
|
|
|
|
DefaultVisibility string
|
|
|
|
ReplyContext *ReplyContext
|
|
|
|
}
|
|
|
|
|
2019-12-21 10:36:44 +02:00
|
|
|
type ReplyContext struct {
|
|
|
|
InReplyToID string
|
|
|
|
InReplyToName string
|
|
|
|
ReplyContent string
|
|
|
|
}
|