11 lines
196 B
Go
11 lines
196 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Collection struct {
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
Name string `gorm:"not null" json:"name"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|