mirror of
https://github.com/yJason/ClashX-Dashboard.git
synced 2026-02-04 10:02:26 +08:00
18 lines
502 B
Swift
18 lines
502 B
Swift
//
|
|
// NotificationNames.swift
|
|
//
|
|
//
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension NSNotification.Name {
|
|
static let reloadDashboard = NSNotification.Name("ReloadDashboard")
|
|
static let sidebarItemChanged = NSNotification.Name("SidebarItemChanged")
|
|
|
|
static let toolbarSearchString = NSNotification.Name("ToolbarSearchString")
|
|
static let stopConns = NSNotification.Name("StopConns")
|
|
static let hideNames = NSNotification.Name("HideNames")
|
|
static let logLevelChanged = NSNotification.Name("LogLevelChanged")
|
|
}
|