mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-11 07:53:34 +08:00
24 lines
398 B
Swift
24 lines
398 B
Swift
//
|
|
// CommitDetails.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 11/22/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
final class CommitDetails {
|
|
|
|
let owner: String
|
|
let repo: String
|
|
let hash: String
|
|
|
|
init(owner: String, repo: String, hash: String) {
|
|
self.owner = owner
|
|
self.repo = repo
|
|
self.hash = hash
|
|
}
|
|
|
|
}
|