govote/voting/result.go

11 lines
171 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 {
Quorum bool
Threshold bool
Yes, No, Abstain int
Votes []vote.Vote
}