10 lines
188 B
Go
10 lines
188 B
Go
package electionday
|
|
|
|
// ElectionResult represents an election result
|
|
type ElectionResult struct {
|
|
// Name of the candidate
|
|
Name string
|
|
// Number of votes the candidate had
|
|
Votes int
|
|
}
|