mirror of
https://github.com/certimate-go/certimate.git
synced 2026-09-21 04:36:03 +08:00
10 lines
200 B
Go
10 lines
200 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type Meta struct {
|
|
Id string `db:"id" json:"id"`
|
|
CreatedAt time.Time `db:"created" json:"created"`
|
|
UpdatedAt time.Time `db:"updated" json:"updated"`
|
|
}
|