16 lines
254 B
Swift
16 lines
254 B
Swift
//
|
|
// CryptoChatModelDeepLink.swift
|
|
// Wallet
|
|
//
|
|
// Created by Igor on 17.10.2020.
|
|
// Copyright © 2020 List. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension CryptoChat.Model {
|
|
struct DeepLink: Codable {
|
|
let account: String
|
|
}
|
|
}
|