Files
wallet-go-api/pkg/models/db.go
Fran Jurmanović 316c39b2dd register controller
2021-05-08 18:26:02 +02:00

10 lines
224 B
Go

package models
import "time"
type CommonModel struct {
Id string `json:"id" pg:"id"`
DateCreated time.Time `json:"dateCreated" pg:"datecreated"`
DateUpdated time.Time `json:"dateUpdated" pg:"dateupdated"`
}