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.

15 lines
411 B

  1. package models
  2. type ProjectEntry struct {
  3. ID int `json:"id"`
  4. Name string `json:"name"`
  5. Status Status `json:"status"`
  6. }
  7. type ProjectRequirement struct {
  8. ID int `json:"id"`
  9. Name string `json:"name"`
  10. Description string `json:"description"`
  11. Status Status `json:"status"`
  12. Stats []StatProgressEntry `json:"stats"`
  13. }