teldrive/pkg/schemas/user.go

13 lines
235 B
Go
Raw Normal View History

2023-09-20 03:20:44 +08:00
package schemas
type Channel struct {
ChannelID int64 `json:"channelId"`
ChannelName string `json:"channelName"`
}
2023-12-03 14:52:25 +08:00
type AccountStats struct {
TotalSize int64 `json:"totalSize"`
TotalFiles int64 `json:"totalFiles"`
Channel
}