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.

9 lines
278 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:"status_stage"`
  6. Name string `db:"status_name"`
  7. Description string `db:"description"`
  8. }