13 lines
237 B
Swift
13 lines
237 B
Swift
//
|
|
// PasswordChange.swift
|
|
// passKit
|
|
//
|
|
// Created by Danny Moesch on 01.12.2018.
|
|
// Copyright © 2018 Bob Sun. All rights reserved.
|
|
//
|
|
|
|
enum PasswordChange: Int {
|
|
case path = 0x01
|
|
case content = 0x02
|
|
case none = 0x00
|
|
}
|