mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-06 23:28:43 +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;"`
|
||
|
}
|