Bulk commit

This commit is contained in:
2025-08-21 19:35:01 +02:00
parent 372dced0a1
commit cf82dede3b
13 changed files with 540 additions and 77 deletions

11
model/mandant.go Normal file
View File

@ -0,0 +1,11 @@
package model
import (
"git.kocoder.xyz/kocoded/vt/types"
"gorm.io/gorm"
)
type Mandant struct {
gorm.Model
types.Mandant
}