mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
17 lines
378 B
C#
17 lines
378 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Client.Models;
|
|
|
|
namespace BTCPayServer.Services.Reporting
|
|
{
|
|
public class ViewDefinition
|
|
{
|
|
public IList<StoreReportResponse.Field> Fields
|
|
{
|
|
get;
|
|
set;
|
|
} = new List<StoreReportResponse.Field>();
|
|
|
|
public List<ChartDefinition> Charts { get; set; } = new ();
|
|
}
|
|
}
|