8 lines
160 B
Go
8 lines
160 B
Go
|
package utils
|
||
|
|
||
|
// YearRegistrations describes how many user registrations happened in a year.
|
||
|
type YearRegistrations struct {
|
||
|
Total int
|
||
|
Months map[int]int
|
||
|
}
|