mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-01 04:59:43 +08:00
16 lines
233 B
Swift
16 lines
233 B
Swift
//
|
|
// IssueStatus.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 6/28/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum IssueStatus: Int {
|
|
case closed
|
|
case open
|
|
case merged
|
|
}
|