21 lines
377 B
Swift
21 lines
377 B
Swift
//
|
|
// AccountModelConnect.swift
|
|
// Wallet
|
|
//
|
|
// Created by Igor on 15.10.2020.
|
|
// Copyright © 2020 List. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct AccountModelConnect: Codable {
|
|
let amount: String
|
|
let from: String
|
|
let to: String
|
|
let symbol: String
|
|
let memo: String
|
|
let contract: String
|
|
let listAccount: String
|
|
let action: String
|
|
}
|