mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 23:54:26 +01:00
12 lines
256 B
C#
12 lines
256 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; }
|
|
}
|
|
}
|