8 lines
126 B
Go
8 lines
126 B
Go
package dto
|
|
|
|
type DateCounter struct {
|
|
Date string `json:"date"`
|
|
Value uint64 `json:"value"`
|
|
Type string `json:"type"`
|
|
}
|