namespace SPMS.Application.Settings; public class RedisSettings { public const string SectionName = "Redis"; public string ConnectionString { get; set; } = "localhost:6379"; public string InstanceName { get; set; } = "spms_dev_"; public int DuplicateTtlHours { get; set; } = 24; }