blt/models/project.go

12 lines
118 B
Go

package models
import (
"gorm.io/gorm"
)
type Project struct {
gorm.Model
Name string
Description string
}