namespace DocumentOperator.Infrastructure.Configuration; public class RedisSettings { public const string SectionName = "RedisSettings"; public string ConnectionString { get; set; } = "localhost:6379"; public string InstanceName { get; set; } = "DocumentOperator:"; public int CacheExpirationMinutes { get; set; } = 60; }