mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
2846c38ff5
* Invoice: Unify status display and functionality Consolidates the invoice status display and functionality (mark setted or invalid) across the dashboard, list and details pages. * Test fix --------- Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
13 lines
158 B
C#
13 lines
158 B
C#
namespace BTCPayServer.Client.Models;
|
|
public enum InvoiceExceptionStatus
|
|
{
|
|
None,
|
|
PaidLate,
|
|
PaidPartial,
|
|
Marked,
|
|
Invalid,
|
|
PaidOver
|
|
}
|
|
|
|
|