<PackageReference Include="Castle.Windsor" Version="5.1.2" />

Castle.MicroKernel.Registration.Property

public class Property
Represents a key/value pair.
namespace Castle.MicroKernel.Registration { public class Property { public object Key { get; } public object Value { get; } public Property(object key, object value); public static PropertyKey ForKey(string key); public static PropertyKey ForKey(Type key); public static PropertyKey ForKey<TKey>(); public static implicit operator Dependency(Property item); } }