teldrive/pkg/schemas/user.go
2024-04-19 11:43:30 +05:30

12 lines
234 B
Go

package schemas
type Channel struct {
ChannelID int64 `json:"channelId"`
ChannelName string `json:"channelName"`
}
type AccountStats struct {
ChannelID int64 `json:"channelId,omitempty"`
Bots []string `json:"bots"`
}