7 lines
83 B
Go
7 lines
83 B
Go
package models
|
|
|
|
type Inbox struct {
|
|
Id int32 `gorm:"primaryKey"`
|
|
Item string
|
|
}
|