post.go 338 B

1234567891011121314151617181920
  1. package model
  2. type PostFormat struct {
  3. Name string
  4. Type string
  5. }
  6. type PostContext struct {
  7. DefaultVisibility string
  8. DefaultFormat string
  9. ReplyContext *ReplyContext
  10. Formats []PostFormat
  11. }
  12. type ReplyContext struct {
  13. InReplyToID string
  14. InReplyToName string
  15. ReplyContent string
  16. ForceVisibility bool
  17. }