Files
TheXamlGuy/Framework/Core/Validations/IPropertyBinderCollection.cs
2022-11-01 15:26:08 +00:00

12 lines
339 B
C#

using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
namespace TheXamlGuy.Framework.Core
{
public interface IPropertyBinderCollection : IReadOnlyCollection<PropertyBinder>
{
void Add(string key, PropertyBinder binder);
bool TryGet(string key, [MaybeNull] out PropertyBinder? value);
}
}