mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-09 16:29:41 +08:00
18 lines
280 B
Swift
18 lines
280 B
Swift
//
|
|
// IssueStatusEvent.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 7/3/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum IssueStatusEvent: Int {
|
|
case reopened
|
|
case closed
|
|
case merged
|
|
case locked
|
|
case unlocked
|
|
}
|