Files
nebula/internal/app/model.go
2026-03-10 16:26:48 +08:00

12 lines
315 B
Go

package app
import "nebula/types"
type App struct {
ID string `gorm:"primaryKey" json:"id"`
Name string `gorm:"not null" json:"name"`
Description string `json:"description"`
CreatedAt types.JSONTime `json:"createdAt"`
UpdatedAt types.JSONTime `json:"updatedAt"`
}