23 lines
434 B
Swift
23 lines
434 B
Swift
//
|
|
// AccountModelConnect.swift
|
|
// PayCash
|
|
//
|
|
// Created by Igor on 15.10.2020.
|
|
// Copyright © 2020 List. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Account.Model {
|
|
struct Connect: 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
|
|
}
|
|
}
|