mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-08 08:10:05 +08:00
12 lines
235 B
Go
12 lines
235 B
Go
package schemas
|
|
|
|
type Channel struct {
|
|
ChannelID int64 `json:"channelId"`
|
|
ChannelName string `json:"channelName"`
|
|
}
|
|
|
|
type AccountStats struct {
|
|
TotalSize int64 `json:"totalSize"`
|
|
TotalFiles int64 `json:"totalFiles"`
|
|
Channel
|
|
}
|