mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
17 lines
381 B
C#
17 lines
381 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace Avalonia.Data
|
|
{
|
|
[UsedImplicitly]
|
|
public sealed class Binding
|
|
{
|
|
public Binding()
|
|
{
|
|
throw new InvalidOperationException(
|
|
"Data binding is not currently supported and this type exists only to make Rider work.");
|
|
}
|
|
}
|
|
}
|