using System;
namespace Umbraco.Core.CodeAnnotations
{
///
/// An attribute used to decorate classes or methods that have been marked to become public but require more testing and review
/// before this is possible.
///
internal class UmbracoExperimentalFeatureAttribute : Attribute
{
///
/// constructor requires a tracker url and a description
///
///
///
public UmbracoExperimentalFeatureAttribute(string trackerUrl, string description)
{
}
}
}