14 lines
235 B
Swift
14 lines
235 B
Swift
//
|
|
// ReceiveMethod.swift
|
|
// BlueWalletWatch Extension
|
|
//
|
|
// Created by Marcos Rodriguez on 6/15/24.
|
|
// Copyright © 2024 BlueWallet. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum ReceiveMethod {
|
|
case Onchain, CreateInvoice
|
|
}
|