11 lines
203 B
C#
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; }
|
|
}
|