deprecated-oc-search/models/profile.go

13 lines
387 B
Go
Raw Normal View History

2023-08-26 22:04:56 +02:00
package models
type Profile struct {
Name string `json:"name"`
Type string `json:"type"`
Logo string `json:"logo"`
ShortDescription string `json:"short_description"`
Description string `json:"description"`
Tags []string `json:"tags"`
Image string `json:"image"`
Id string `json:"id"`
}