namespace KBR.Cache.Options { public class CacheOptions { public string Provider { get; set; } = null!; public bool? Encryption { get; set; } = false; public string? ConnectionString { get; set; } } }