2017-03-18 00:18:55 +08:00
|
|
|
//
|
|
|
|
|
// NotificationNames.swift
|
|
|
|
|
// pass
|
|
|
|
|
//
|
|
|
|
|
// Created by Yishi Lin on 17/3/17.
|
|
|
|
|
// Copyright © 2017 Yishi Lin, Bob Sun. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
2017-06-13 11:42:49 +08:00
|
|
|
public extension Notification.Name {
|
2017-03-18 00:18:55 +08:00
|
|
|
static let passwordStoreUpdated = Notification.Name("passwordStoreUpdated")
|
|
|
|
|
static let passwordStoreErased = Notification.Name("passwordStoreErased")
|
|
|
|
|
static let passwordStoreChangeDiscarded = Notification.Name("passwordStoreChangeDiscarded")
|
|
|
|
|
static let passwordSearch = Notification.Name("passwordSearch")
|
2018-12-09 16:59:07 -08:00
|
|
|
|
2017-03-24 20:40:24 +08:00
|
|
|
static let passwordDisplaySettingChanged = Notification.Name("passwordDisplaySettingChanged")
|
|
|
|
|
static let passwordDetailDisplaySettingChanged = Notification.Name("passwordDetailDisplaySettingChanged")
|
2017-03-18 00:18:55 +08:00
|
|
|
}
|