mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
9 lines
177 B
Go
9 lines
177 B
Go
package models
|
|
|
|
// Point represents a data point, will always have a Label and Value
|
|
type Point struct {
|
|
Label string
|
|
Value int
|
|
PercentageValue float64
|
|
}
|