mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 14:18:12 +00:00
10 lines
224 B
Go
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"`
|
|
}
|