Name classes/structs consistently

This commit is contained in:
Danny Moesch 2020-04-19 15:41:30 +02:00 committed by Mingshen Sun
parent 072f824158
commit 4c2693e2c7
11 changed files with 80 additions and 80 deletions

View file

@ -16,7 +16,7 @@ public class Password {
public var plainText: String
public var changed: Int = 0
public var otpType: OtpType = .none
public var otpType: OTPType = .none
private var parser = Parser(plainText: "")
private var additions = [AdditionField]()
@ -24,7 +24,7 @@ public class Password {
private var otpToken: Token? {
didSet {
otpType = OtpType(token: otpToken)
otpType = OTPType(token: otpToken)
}
}