probo/models/meta.go
2023-10-02 12:55:03 +02:00

9 lines
201 B
Go

package models
import "time"
type Meta struct {
ID string `json:"id" yaml:"id"`
CreatedAt time.Time `json:"created_at" yaml:"created_at"`
Tags []*Tag `json:"tags" yaml:"tags"`
}