mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-03-30 23:20:27 +08:00
17 lines
320 B
Swift
17 lines
320 B
Swift
//
|
|
// RepositoryDetails.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 9/22/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct RepositoryDetails: Codable, Equatable {
|
|
let owner: String
|
|
let name: String
|
|
let defaultBranch: String
|
|
let hasIssuesEnabled: Bool
|
|
}
|