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.

10 lines
254 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:"resolved"`
  9. }