models.go 349 B

123456789101112131415161718192021
  1. package models
  2. type Event struct {
  3. Project string
  4. Summary string `json:"summary"`
  5. Description string `json:"description"`
  6. StartTime string
  7. EndTime string
  8. Date string
  9. Duration float64
  10. }
  11. type Project struct {
  12. Name string
  13. TotalHours float64
  14. }
  15. type Projects struct {
  16. Projects []Project
  17. TotalHours float64
  18. }