Files
zap-stream-api/NostrStreamer/Database/Payment.cs
2023-06-30 14:08:15 +01:00

11 lines
203 B
C#

namespace NostrStreamer.Database;
public class Payment
{
public string PubKey { get; init; } = null!;
public string Invoice { get; init; } = null!;
public bool IsPaid { get; init; }
}