probo/models/meta.go

11 lines
284 B
Go
Raw Normal View History

2023-09-22 10:29:10 +02:00
package models
import "time"
type Meta struct {
2023-10-28 20:50:06 +02:00
ID string `json:"id" yaml:"id" gorm:"primaryKey"`
2023-09-22 10:29:10 +02:00
CreatedAt time.Time `json:"created_at" yaml:"created_at"`
2023-10-28 20:50:06 +02:00
UpdatedAt time.Time `json:"updated_at" yaml:"updated_at"`
Tags []*Tag `json:"tags" yaml:"-" gorm:"-"`
2023-09-22 10:29:10 +02:00
}