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 }