mirror of
https://github.com/tgdrive/teldrive.git
synced 2024-11-10 09:02:52 +08:00
11 lines
234 B
Go
11 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"`
|
|
}
|