namespace Connected.Caching; public class CacheNotificationArgs { public CacheNotificationArgs(string method) { if (string.IsNullOrWhiteSpace(method)) throw new ArgumentException(null, nameof(method)); Method = method; } public string? Key { get; init; } public List? Ids { get; init; } public string Method { get; } }