resource/backend/api/groups.go

8 lines
82 B
Go

package api
import "gorm.io/gorm"
type Group struct {
gorm.Model
Name string
}