Files
dash/backend/database/models/inbox.go
Martin Pander 8addda35ea V2
2023-12-09 19:34:45 +01:00

7 lines
83 B
Go

package models
type Inbox struct {
Id int32 `gorm:"primaryKey"`
Item string
}