21 lines
275 B
Go
21 lines
275 B
Go
package common
|
|
|
|
type IssueDetail struct {
|
|
Id int
|
|
Number int
|
|
Html_url string
|
|
User *User
|
|
Title string
|
|
Body string
|
|
State string
|
|
}
|
|
|
|
type IssueWebhookEvent struct {
|
|
Action string
|
|
|
|
Issue *IssueDetail
|
|
Repository *Repository
|
|
Sender *User
|
|
}
|
|
|