diff --git a/project.go b/project.go new file mode 100644 index 0000000..36702f2 --- /dev/null +++ b/project.go @@ -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 +}