mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 21:49:52 +00:00
10 lines
155 B
Go
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"`
|
|
}
|