2024-11-18 19:40:24 +08:00

10 lines
155 B
Go

package domain
import "time"
type Meta struct {
Id string `json:"id"`
Created time.Time `json:"created"`
Updated time.Time `json:"updated"`
}