btcpayserver/BTCPayServer/Services/Reporting/ViewDefinition.cs
2023-10-18 10:09:03 +02:00

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 ();
}
}