mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 18:01:39 +00:00
13 lines
369 B
Go
13 lines
369 B
Go
package models
|
|||
|
|
|
||
|
|
type Metadata struct {
|
||
|
|
Title string `json:"title"`
|
||
|
|
Description string `json:"description"`
|
||
|
|
OpenGraphImage string `json:"openGraphImage"`
|
||
|
|
TwitterImage string `json:"twitterImage"`
|
||
|
|
Tags string `json:"tags"`
|
||
|
|
Category string `json:"category"`
|
||
|
|
Favicon string `json:"favicon"`
|
||
|
|
URL string `json:"url"`
|
||
|
|
}
|