mirror of
https://github.com/tgdrive/teldrive.git
synced 2024-11-14 11:45:29 +08:00
14 lines
326 B
Go
14 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"`
|
||
|
}
|