namespace HostApi; using System.Diagnostics.CodeAnalysis; using System.Diagnostics.Contracts; public interface IProperties : IEnumerable> { [Pure] int Count { get; } string this[string key] { get; set; } bool TryGetValue(string key, [MaybeNullWhen(false)] out string value); }