mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
16 lines
464 B
C#
16 lines
464 B
C#
using System;
|
|
|
|
namespace Artemis.Core
|
|
{
|
|
/// <summary>
|
|
/// Represents a data binding converter that acts as the bridge between a
|
|
/// <see cref="DataBinding{TLayerProperty, TProperty}" /> and a <see cref="LayerProperty{T}" />
|
|
/// </summary>
|
|
public interface IDataBindingConverter
|
|
{
|
|
/// <summary>
|
|
/// Gets the type this converter supports
|
|
/// </summary>
|
|
public Type SupportedType { get; }
|
|
}
|
|
} |