This commit is contained in:
2024-07-19 17:04:42 +02:00
commit 5e0d0ec69f
71 changed files with 3316 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package model
import "time"
type Metadata struct {
CreationDate time.Time `json:"creation_date"`
LastUpdateDate time.Time `json:"last_update_date"`
CreationUser string `json:"creation_user"`
LastUpdateUser string `json:"last_update_user"`
}