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.
20 lines
388 B
20 lines
388 B
2 years ago
|
# type Milestone struct {
|
||
|
# ID int64 `xorm:"pk autoincr"`
|
||
|
# IsClosed bool
|
||
|
# NumIssues int
|
||
|
# NumClosedIssues int
|
||
|
# Completeness int // Percentage(1-100).
|
||
|
# }
|
||
|
-
|
||
|
id: 1
|
||
|
is_closed: false
|
||
|
num_issues: 3
|
||
|
num_closed_issues: 1
|
||
|
completeness: 33
|
||
|
-
|
||
|
id: 2
|
||
|
is_closed: true
|
||
|
num_issues: 5
|
||
|
num_closed_issues: 5
|
||
|
completeness: 100
|