govote/voting/result.go
2024-05-13 10:45:38 +02:00

11 lines
195 B
Go

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
}