Data Erasure plugin

This commit is contained in:
Kukks
2023-03-22 14:45:42 +01:00
parent 75337f364e
commit 37d68f1b3b
10 changed files with 373 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace BTCPayServer.Plugins.DataErasure
{
public class DataErasureSettings
{
public bool Enabled { get; set; }
public int DaysToKeep { get; set; }
public DateTimeOffset? LastRunCutoff { get; set; }
}
}