| 593 | |
| 594 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] |
| 595 | pub(crate) struct Issue { |
| 596 | pub id: i64, |
| 597 | pub number: i64, |
| 598 | pub title: String, |
| 599 | pub body: Option<String>, |
| 600 | pub pull_request: Option<PullRequestInIssue>, |
| 601 | } |
| 602 | |
| 603 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] |
| 604 | pub(crate) struct Repository { |
no outgoing calls