2023-07-24 09:24:32 +09:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using BTCPayServer.Client.Models;
|
2024-10-04 16:58:13 +09:00
|
|
|
using BTCPayServer.Payments;
|
2023-07-24 09:24:32 +09:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Models.StoreReportsViewModels;
|
|
|
|
|
|
|
|
public class StoreReportsViewModel
|
|
|
|
{
|
|
|
|
public string InvoiceTemplateUrl { get; set; }
|
2024-10-04 16:58:13 +09:00
|
|
|
public Dictionary<PaymentMethodId,string> ExplorerTemplateUrls { get; set; }
|
2023-07-24 09:24:32 +09:00
|
|
|
public StoreReportRequest Request { get; set; }
|
|
|
|
public List<string> AvailableViews { get; set; }
|
|
|
|
public StoreReportResponse Result { get; set; }
|
|
|
|
}
|