mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-03-29 22:39:31 +08:00
18 lines
261 B
Swift
18 lines
261 B
Swift
//
|
|
// IssueDetailsModel.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 8/11/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct IssueDetailsModel {
|
|
|
|
let owner: String
|
|
let repo: String
|
|
let number: Int
|
|
|
|
}
|