mixedreality/com.microsoft.mixedreality..../Runtime/Utilities/DocURLAttribute.cs

20 lines
388 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using UnityEngine;
namespace Microsoft.MixedReality.OpenXR
{
[AttributeUsage(AttributeTargets.Field)]
internal class DocURLAttribute : PropertyAttribute
{
public string Url { get; }
public DocURLAttribute(string url)
{
Url = url;
}
}
}