E5BotForSQLite/core/client.go

13 lines
402 B
Go
Raw Normal View History

2021-03-12 12:54:32 +08:00
package core
type Client struct {
TgId int64 `gorm:"column:tg_id"`
RefreshToken string `gorm:"column:refresh_token"`
MsId string `gorm:"column:ms_id"`
Uptime int64 `gorm:"column:uptime"`
Alias string `gorm:"column:alias"`
ClientId string `gorm:"column:client_id"`
ClientSecret string `gorm:"column:client_secret"`
Other string `gorm:"column:other"`
}