14 lines
386 B
C#
14 lines
386 B
C#
using PARR.Core.Services.Snapshots.Interfaces;
|
|
|
|
namespace PARR.SnapshotWorker.Settings
|
|
{
|
|
internal record CommonSettings : ISnapshotSettings
|
|
{
|
|
public TimeSpan RobotConfigurationSnapshotInterval { get; init; }
|
|
|
|
public TimeSpan RobotConfigurationSnapshotRetentionPeriod { get; init; }
|
|
|
|
public TimeSpan RobotSnapshotRetentionPeriod { get; init; }
|
|
}
|
|
}
|