1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-24 13:43:12 +02:00
focalboard/server/model/board_statistics.go

16 lines
454 B
Go
Raw Normal View History

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package model
// BoardsStatistics is the representation of the statistics for the Boards server
// swagger:model
type BoardsStatistics struct {
// The maximum number of cards on the server
// required: true
Boards int `json:"board_count"`
// The maximum number of cards on the server
// required: true
Cards int `json:"card_count"`
}