Files
SaveAny-Bot/types/model.go
2024-11-09 09:07:00 +08:00

22 lines
311 B
Go

package types
import (
"gorm.io/gorm"
)
type ReceivedFile struct {
gorm.Model
Processing bool
ChatID int64
MessageID int
ReplyMessageID int
FileName string
}
type User struct {
gorm.Model
UserID int64 `gorm:"uniqueIndex"`
Silent bool
DefaultStorage string
}