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