mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
11 lines
278 B
C#
11 lines
278 B
C#
|
using System.Collections.Generic;
|
||
|
using BTCPayServer.Data;
|
||
|
|
||
|
namespace BTCPayServer.Components.StoreRecentInvoices;
|
||
|
|
||
|
public class StoreRecentInvoicesViewModel
|
||
|
{
|
||
|
public StoreData Store { get; set; }
|
||
|
public IEnumerable<StoreRecentInvoiceViewModel> Invoices { get; set; }
|
||
|
}
|