mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
17 lines
308 B
C#
17 lines
308 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace BTCPayServer.Client.Models
|
||
|
{
|
||
|
public class StoreReportsResponse
|
||
|
{
|
||
|
public string ViewName { get; set; }
|
||
|
public StoreReportResponse.Field[] Fields
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
}
|
||
|
}
|