13 lines
190 B
Go
13 lines
190 B
Go
package model
|
|
|
|
import (
|
|
"gorm.io/datatypes"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type ConcertModel struct {
|
|
gorm.Model
|
|
Name string `json:"name"`
|
|
StartDate datatypes.Date `json:"startDate"`
|
|
}
|