probo/models/meta.go

10 lines
201 B
Go
Raw Normal View History

2023-09-22 10:29:10 +02:00
package models
import "time"
type Meta struct {
ID string `json:"id" yaml:"id"`
CreatedAt time.Time `json:"created_at" yaml:"created_at"`
2023-10-02 12:55:03 +02:00
Tags []*Tag `json:"tags" yaml:"tags"`
2023-09-22 10:29:10 +02:00
}