teldrive/schemas/user.schema.go
2023-09-21 18:28:32 +05:30

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"`
}