jiraclient/project.go

13 lines
202 B
Go
Raw Normal View History

2023-07-14 14:49:59 +00:00
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
}