10 lines
113 B
Go
10 lines
113 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type EventsServices struct {
|
|
gorm.Model
|
|
EventId uint
|
|
ServiceId uint
|
|
}
|