1package models 2 3import "time" 4 5type Punch struct { 6 Did string 7 Date time.Time 8 Count int 9} 10 11type Punchcard struct { 12 Total int 13 Punches []Punch 14}