probo/models/meta.go

10 lines
231 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"`
2023-09-22 10:29:10 +02:00
}