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
16 lines
414 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:"stage"`
|
|
Name string `db:"name"`
|
|
Description string `db:"description"`
|
|
}
|
|
|
|
// ProjectStatusFilter is a filter for listing ProjectStatus.
|
|
type ProjectStatusFilter struct {
|
|
ProjectID *string
|
|
MinStage *int
|
|
MaxStage *int
|
|
}
|