Files
zap-stream-api/NostrStreamer/Database/Payment.cs
2023-07-04 14:11:53 +01:00

18 lines
417 B
C#

namespace NostrStreamer.Database;
public class Payment
{
public string PaymentHash { get; init; } = null!;
public string PubKey { get; init; } = null!;
public User User { get; init; } = null!;
public string Invoice { get; init; } = null!;
public bool IsPaid { get; set; }
public ulong Amount { get; init; }
public DateTime Created { get; init; } = DateTime.UtcNow;
}