Files
damus/damus/Util/LNUrlPayRequest.swift
Bryan Montz 9847f12c95 Remove unused code
Closes: #1105
2023-05-08 11:01:04 -07:00

23 lines
316 B
Swift

//
// LNUrl.swift
// damus
//
// Created by William Casarin on 2023-01-16.
//
import Foundation
struct LNUrlPayRequest: Decodable {
let allowsNostr: Bool?
let commentAllowed: Int?
let nostrPubkey: String?
let callback: String?
}
struct LNUrlPayResponse: Decodable {
let pr: String
}