mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-04-16 12:10:19 +08:00
17 lines
239 B
Swift
17 lines
239 B
Swift
//
|
|
// RepositoryFile.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 10/8/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct RepositoryFile {
|
|
|
|
let name: String
|
|
let isDirectory: Bool
|
|
|
|
}
|