mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
dynamic reports
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace BTCPayServer.Plugins.DynamicReports;
|
||||
|
||||
public class DynamicReportsSettings
|
||||
{
|
||||
public Dictionary<string, DynamicReportSetting> Reports { get; set; } = new();
|
||||
public bool EnableLegacyInvoiceExport { get; set; }
|
||||
|
||||
public class DynamicReportSetting
|
||||
{
|
||||
[Required]
|
||||
public string Sql { get; set; }
|
||||
|
||||
public bool AllowForNonAdmins { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
public class DynamicReportViewModel:DynamicReportsSettings.DynamicReportSetting
|
||||
{
|
||||
[Required]
|
||||
public string Name { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user