mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
7ec978fcdb
* Add dashboard and chart basics * More widgets * Make widgets responsive * Layout dashboard * Prepare ExplorerClient * Switch to Chartist * Dynamic data for store numbers and recent transactions tiles * Dynamic data for recent invoices tile * Improvements * Plug NBXPlorer DB * Properly filter by code * Reorder cheat mode button * AJAX update for graph data * Fix create invoice button * Retry connection on transient issues * App Top Items stats * Design updates * App Sales stats * Add points for weekly histogram, set last point to current balance Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
14 lines
373 B
C#
14 lines
373 B
C#
using System;
|
|
using BTCPayServer.Services.Invoices;
|
|
|
|
namespace BTCPayServer.Components.StoreRecentInvoices;
|
|
|
|
public class StoreRecentInvoiceViewModel
|
|
{
|
|
public string InvoiceId { get; set; }
|
|
public string OrderId { get; set; }
|
|
public string AmountCurrency { get; set; }
|
|
public InvoiceState Status { get; set; }
|
|
public DateTimeOffset Date { get; set; }
|
|
}
|