teldrive/pkg/schemas/user.go

12 lines
234 B
Go
Raw Permalink 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 14:13:30 +08:00
ChannelID int64 `json:"channelId,omitempty"`
2024-04-19 04:46:47 +08:00
Bots []string `json:"bots"`
2023-12-03 14:52:25 +08:00
}