15 lines
250 B
Swift
15 lines
250 B
Swift
//
|
|
// LatestTransaction.swift
|
|
// BlueWallet
|
|
//
|
|
// Created by Marcos Rodriguez on 4/14/24.
|
|
// Copyright © 2024 BlueWallet. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct LatestTransaction {
|
|
let isUnconfirmed: Bool?
|
|
let epochValue: Int?
|
|
}
|