mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-18 21:32:27 +01:00
12 lines
145 B
C#
12 lines
145 B
C#
namespace BTCPayServer.Client.Models;
|
|
public enum InvoiceExceptionStatus
|
|
{
|
|
None,
|
|
PaidLate,
|
|
PaidPartial,
|
|
Marked,
|
|
PaidOver
|
|
}
|
|
|
|
|