teldrive/pkg/schemas/user.go

12 lines
224 B
Go
Raw Normal View History

2023-09-20 03:20:44 +08:00
package schemas
type Channel struct {
ChannelID int64 `json:"channelId"`
ChannelName string `json:"channelName"`
}
2023-12-03 14:52:25 +08:00
type AccountStats struct {
2024-04-19 04:46:47 +08:00
ChannelID int64 `json:"channelId"`
Bots []string `json:"bots"`
2023-12-03 14:52:25 +08:00
}