mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +00:00
12 lines
350 B
Go
12 lines
350 B
Go
package domain
|
|
|
|
type Statistics struct {
|
|
CertificateTotal int `json:"certificateTotal"`
|
|
CertificateExpireSoon int `json:"certificateExpireSoon"`
|
|
CertificateExpired int `json:"certificateExpired"`
|
|
|
|
WorkflowTotal int `json:"workflowTotal"`
|
|
WorkflowEnabled int `json:"workflowEnabled"`
|
|
WorkflowDisabled int `json:"workflowDisabled"`
|
|
}
|