mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-03-02 06:47:27 +08:00
14 lines
320 B
Go
14 lines
320 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
// NextRank is the control flow event for when the next rank should be entered.
|
|
type NextRank struct {
|
|
// Rank is the next rank value.
|
|
Rank uint64
|
|
// Start is the time the next rank was entered.
|
|
Start time.Time
|
|
// End is the time the next rank ends (i.e. times out).
|
|
End time.Time
|
|
}
|