mirror of
https://github.com/RWejlgaard/org.git
synced 2026-05-06 04:34:45 +00:00
9 lines
169 B
Go
9 lines
169 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
// ClockEntry represents a single clock entry
|
|
type ClockEntry struct {
|
|
Start time.Time
|
|
End *time.Time // nil if currently clocked in
|
|
}
|