mirror of
https://github.com/mssun/passforios.git
synced 2026-03-03 18:24:08 +01:00
14 lines
280 B
Swift
14 lines
280 B
Swift
//
|
|
// PasswordSelectionDelegate.swift
|
|
// passAutoFillExtension
|
|
//
|
|
// Created by Sun, Mingshen on 12/31/20.
|
|
// Copyright © 2020 Bob Sun. All rights reserved.
|
|
//
|
|
|
|
import passKit
|
|
|
|
protocol PasswordSelectionDelegate: AnyObject {
|
|
func selected(password: PasswordTableEntry)
|
|
}
|