mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 10:07:15 +02:00
39 lines
716 B
C#
39 lines
716 B
C#
using System;
|
|
|
|
namespace Avalonia.Metadata
|
|
{
|
|
public sealed class ContentAttribute : Attribute
|
|
{
|
|
}
|
|
}
|
|
|
|
namespace Robust.Client.UserInterface.XAML
|
|
{
|
|
public sealed class UsableDuringInitializationAttribute : Attribute
|
|
{
|
|
public UsableDuringInitializationAttribute(bool usable)
|
|
{
|
|
}
|
|
}
|
|
|
|
public sealed class DeferredContentAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
public interface ITestRootObjectProvider
|
|
{
|
|
object RootObject { get; }
|
|
}
|
|
|
|
public interface ITestProvideValueTarget
|
|
{
|
|
object TargetObject { get; }
|
|
object TargetProperty { get; }
|
|
}
|
|
|
|
public interface ITestUriContext
|
|
{
|
|
Uri BaseUri { get; set; }
|
|
}
|
|
}
|