mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-02-24 06:55:02 +08:00
9 lines
248 B
Go
9 lines
248 B
Go
package models
|
|
|
|
type Bot struct {
|
|
Token string `gorm:"type:text;primaryKey"`
|
|
UserId int64 `gorm:"type:bigint"`
|
|
BotId int64 `gorm:"type:bigint"`
|
|
BotUserName string `gorm:"type:text"`
|
|
ChannelId int64 `gorm:"type:bigint"`
|
|
}
|