mirror of
https://github.com/tgdrive/teldrive.git
synced 2024-11-13 03:04:34 +08:00
13 lines
326 B
Go
13 lines
326 B
Go
package schemas
|
|
|
|
type AccountStats struct {
|
|
TotalSize int64 `json:"totalSize"`
|
|
TotalFiles int64 `json:"totalFiles"`
|
|
ChId int64 `json:"channelId,omitempty"`
|
|
ChName string `json:"channelName,omitempty"`
|
|
}
|
|
|
|
type Channel struct {
|
|
ChannelID int64 `json:"channelId"`
|
|
ChannelName string `json:"channelName"`
|
|
}
|