using System;
namespace umbraco.cms.businesslogic.macro
{
///
/// Not implemented
///
[AttributeUsage(AttributeTargets.Class |
AttributeTargets.Constructor |
AttributeTargets.Field |
AttributeTargets.Method |
AttributeTargets.Property,
AllowMultiple = true)]
public class MacroComment : System.Attribute
{
private string _comment;
///
/// Not implemented
///
public string Comment
{
set {_comment = value;}
get {return _comment;}
}
///
/// Not implemented
///
/// Not implemented
public MacroComment(string Comment)
{
_comment = Comment;
}
}
}