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; } } }