diff options
Diffstat (limited to 'model')
-rw-r--r-- | model/postContext.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/model/postContext.go b/model/postContext.go index 90e5771..3098437 100644 --- a/model/postContext.go +++ b/model/postContext.go @@ -1,8 +1,14 @@ package model +type PostFormat struct { + Name string + Type string +} + type PostContext struct { DefaultVisibility string ReplyContext *ReplyContext + Formats []PostFormat } type ReplyContext struct { |