OSDN Git Service

不要となっていたプロパティを削除
[kcd/KCD.git] / KCD / PortNotifyCommand.swift
1 //
2 //  PortNotifyCommand.swift
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2017/01/08.
6 //  Copyright © 2017年 Hori,Masaki. All rights reserved.
7 //
8
9 import Cocoa
10
11 extension Notification.Name {
12     
13     static let PortAPIReceived = Notification.Name("com.masakih.KCD.Notification.PortAPIReceived")
14 }
15
16 final class PortNotifyCommand: JSONCommand {
17     
18     override func execute() {
19         
20         DispatchQueue.main.async {
21             
22             NotificationCenter.default.post(name: .PortAPIReceived, object: self)
23         }
24     }
25 }