using System.Reflection; using Connected.Caching.Annotations; using Connected.Interop; namespace Connected.Caching; public static class CachingExtensions { public static PropertyInfo? GetCacheKeyProperty(object instance) { return Properties.GetPropertyAttribute(instance); } }