15 lines
232 B
Go

package entities
import "time"
type TimeEntry struct {
ID int
UserID int
ProjectID int
ActivityID int
Start time.Time
End time.Time
Description string
Billable int // Percentage (0-100)
}