mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-09 00:29:57 +08:00
9 lines
216 B
Go
9 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;"`
|
||
|
}
|