22 lines
441 B
Swift
22 lines
441 B
Swift
//
|
|
// AccountModelChangeKey.swift
|
|
// PayCash
|
|
//
|
|
// Created by Alexandr Serpokrylow on 17.02.2022.
|
|
// Copyright © 2022 AM. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import EosioSwift
|
|
|
|
extension Account.Model {
|
|
struct ChangeKey {
|
|
let username: String
|
|
let permission: Permission
|
|
var privateKey: String
|
|
var publicKey: String
|
|
var isChecked: Bool = true
|
|
var hasError: Bool = false
|
|
}
|
|
}
|