12 lines
130 B
Go
12 lines
130 B
Go
package model
|
|
|
|
import (
|
|
"git.kocoder.xyz/kocoded/vt/types"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Mandant struct {
|
|
gorm.Model
|
|
types.Mandant
|
|
}
|