mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
14 lines
312 B
C#
14 lines
312 B
C#
using System;
|
|
|
|
namespace BTCPayServer.Plugins.DataErasure
|
|
{
|
|
public class DataErasureSettings
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public int DaysToKeep { get; set; }
|
|
public DateTimeOffset? LastRunCutoff { get; set; }
|
|
|
|
public bool EntirelyEraseInvoice { get; set; }
|
|
}
|
|
}
|