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.

16 lines
414 B

  1. package models
  2. // ProjectStatus is an entry denoting a status a project's issues can have.
  3. type ProjectStatus struct {
  4. ProjectID string `db:"project_id"`
  5. Stage int `db:"stage"`
  6. Name string `db:"name"`
  7. Description string `db:"description"`
  8. }
  9. // ProjectStatusFilter is a filter for listing ProjectStatus.
  10. type ProjectStatusFilter struct {
  11. ProjectID *string
  12. MinStage *int
  13. MaxStage *int
  14. }