apifiber/models/channels.go

13 lines
221 B
Go

package models
import (
"gorm.io/gorm"
)
type Channel struct {
gorm.Model
Name string `gorm:"size:40;not null" json:"name"`
Description string `gorm:"not null" json:"description"`
CorporationId string
}