mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-09-08 15:36:24 +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;"`
|
|
}
|