mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
14 lines
250 B
Swift
14 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?
|
|
}
|