Files
GitHawk/Classes/Notifications/NotificationType.swift
2017-05-13 15:10:23 -04:00

17 lines
378 B
Swift

//
// NotificationType.swift
// Freetime
//
// Created by Ryan Nystrom on 5/13/17.
// Copyright © 2017 Ryan Nystrom. All rights reserved.
//
import Foundation
// https://github.com/octokit/octokit.objc/blob/master/OctoKit/OCTNotification.m#L63-L65
enum NotificationType: String {
case issue = "Issue"
case pullRequest = "PullRequest"
case commit = "Commit"
}