mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-05 06:43:12 +08:00
8 lines
216 B
Go
8 lines
216 B
Go
package models
|
|
|
|
type Channel struct {
|
|
ChannelID int64 `gorm:"type:bigint;primaryKey"`
|
|
ChannelName string `gorm:"type:text"`
|
|
UserID int64 `gorm:"type:bigint;"`
|
|
Selected bool `gorm:"type:boolean;"`
|
|
}
|