mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
18 lines
552 B
C#
18 lines
552 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Payments;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace BTCPayServer.Models.StoreReportsViewModels;
|
|
|
|
public class StoreReportsViewModel
|
|
{
|
|
public string InvoiceTemplateUrl { get; set; }
|
|
public Dictionary<PaymentMethodId,string> ExplorerTemplateUrls { get; set; }
|
|
public StoreReportRequest Request { get; set; }
|
|
public List<string> AvailableViews { get; set; }
|
|
public StoreReportResponse Result { get; set; }
|
|
}
|