You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
mapbox-sdk/Unity/Utilities/DescriptionAttribute.cs

22 lines
407 B

namespace Mapbox.VectorTile.Geometry
{
using System;
#if ENABLE_WINMD_SUPPORT
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
public class DescriptionAttribute : Attribute
{
private readonly string description;
public string Description { get { return description; } }
public DescriptionAttribute(string description)
{
this.description = description;
}
}
#endif
}