stufflog graphql server
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.

22 lines
501 B

  1. package models
  2. // An IssueTask is a task within an issue.
  3. type IssueItem struct {
  4. ID string `db:"issue_item_id"`
  5. IssueID string `db:"issue_id"`
  6. ItemID string `db:"item_id"`
  7. Quantity int `db:"quantity"`
  8. Acquired bool `db:"acquired"`
  9. }
  10. type IssueItemFilter struct {
  11. IssueItemIDs []string
  12. IssueIDs []string
  13. IssueAssignees []string
  14. IssueOwners []string
  15. IssueMinStage *int
  16. IssueMaxStage *int
  17. ItemIDs []string
  18. ItemTags []string
  19. Acquired *bool
  20. }