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 }