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
9 lines
278 B
package models
|
|
|
|
// ProjectStatus is an entry denoting a status a project's issues can have.
|
|
type ProjectStatus struct {
|
|
ProjectID string `db:"project_id"`
|
|
Stage int `db:"status_stage"`
|
|
Name string `db:"status_name"`
|
|
Description string `db:"description"`
|
|
}
|