20 lines
368 B
Swift
20 lines
368 B
Swift
//
|
|
// AccountModelAdd.swift
|
|
// PayCash
|
|
//
|
|
// Created by Alexandr Serpokrylow on 14.02.2022.
|
|
// Copyright © 2022 AM. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import EosioSwift
|
|
|
|
extension Account.Model {
|
|
struct Add {
|
|
let username: String
|
|
let permission: Permission
|
|
var isAdded: Bool = false
|
|
var isChecked: Bool = false
|
|
}
|
|
}
|