Files
teletypegames/domain/model.release.go
T
2026-03-01 19:56:46 +01:00

14 lines
433 B
Go

package domain
import "gorm.io/gorm"
type Release struct {
gorm.Model
SoftwareID uint `gorm:"index" json:"softwareId"`
Version string `gorm:"size:64" json:"version"`
CartridgePath string `gorm:"size:255" json:"cartridgePath"`
SourcePath string `gorm:"size:255" json:"sourcePath"`
HTMLFolderPath string `gorm:"size:255" json:"htmlFolderPath"`
DocsFolderPath string `gorm:"size:255" json:"docsFolderPath"`
}