-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: (#16) IssueDTO 및APIService객체생성
- Loading branch information
Showing
4 changed files
with
56 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import Foundation | ||
|
||
struct IssueDTO { | ||
let count: Count | ||
let issue: [Issue] | ||
} | ||
|
||
struct Count { | ||
let label:Int | ||
let milestone:Int | ||
let openedIssue:Int | ||
let closedIssue:Int | ||
} | ||
|
||
struct Issue { | ||
let id:Int | ||
let title:String | ||
let author:String | ||
let createdDateTime:String | ||
let commentNumber:Int | ||
let assignees:[String] | ||
let labels:[String] | ||
let milestone:String | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import Foundation | ||
import RxSwift | ||
import Alamofire | ||
|
||
class APIService { | ||
|
||
} |