Loggest thy stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
313 B

  1. package models
  2. import "time"
  3. type Item struct {
  4. ID int
  5. ProjectRequirementID *int
  6. OwnerID string
  7. Name string
  8. Description string
  9. OwnerName string
  10. CreatedTime time.Time
  11. AcquiredTime *time.Time
  12. ScheduledDate *time.Time
  13. Stats []StatProgressEntry
  14. }