govote/voting/result.go

11 lines
195 B
Go
Raw Normal View History

2024-05-12 22:47:24 +00:00
package voting
import "code.c-base.org/baccenfutter/govote/voting/vote"
type Result struct {
2024-05-13 08:45:38 +00:00
Quorum bool
Threshold bool
Yes, No, Abstain int
Votes []vote.Vote
2024-05-12 22:47:24 +00:00
}