Add the `Project` type
parent
fb0e4a8557
commit
c37f3f0ea2
|
@ -0,0 +1,12 @@
|
|||
package jiraclient
|
||||
|
||||
type Project struct {
|
||||
Id string `json:"id"`
|
||||
Self string `json:"self"`
|
||||
Name string `json:"name"`
|
||||
Key string `json:"key"`
|
||||
}
|
||||
|
||||
func (p Project) String() string {
|
||||
return p.Name
|
||||
}
|
Loading…
Reference in New Issue