18 lines
417 B
C#
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;
|
|
}
|