teldrive/pkg/schemas/user.go
2023-12-03 12:22:25 +05:30

13 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
}