Changelog-Fixed: Refactor profile zaps to reuse same BOLT11 Lightning invoice logic as note zaps, which fixes profile zaps from Cash App and Muun wallets Fixes: #1067
16 lines
325 B
Swift
16 lines
325 B
Swift
//
|
|
// ZapButtonModel.swift
|
|
// damus
|
|
//
|
|
// Created by Terry Yiu on 6/1/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class ZapButtonModel: ObservableObject {
|
|
var invoice: String? = nil
|
|
@Published var zapping: String = ""
|
|
@Published var showing_select_wallet: Bool = false
|
|
@Published var showing_zap_customizer: Bool = false
|
|
}
|