Files
gitea-issue/giteaClient/createIssueProxy.go
T
2019-12-04 18:04:06 +01:00

17 lines
358 B
Go

package giteaClient
type GetCreateIssueProxy struct {
Title string `json:"title"`
Body string `json:"body"`
Assignee string `json:"assignee"`
Labels []int64 `json:"labels"`
Closed bool `json:"closed"`
}
type PostCreateIssueProxy struct {
Title string `json:"title"`
Body string `json:"body"`
Labels []int64 `json:"labels"`
}