Files
most-specific-period/msp/types.go
2022-02-28 14:56:44 -08:00

10 lines
173 B
Go

package msp
import "time"
type Period struct {
StartTime time.Time `json:"startTime"`
EndTime time.Time `json:"endTime"`
Identifier string `json:"identifier"`
}