13 lines
222 B
Go
13 lines
222 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Projekt struct {
|
|
gorm.Model
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Icon string `json:"icon"`
|
|
Mandant Mandant
|
|
MandantID uint
|
|
}
|