using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LiveForum.Code.AttributeExtend
{
///
/// 执行成功后返回的消息
///
[AttributeUsage(AttributeTargets.Method)]
public class MessageAttribute : Attribute
{
///
/// 执行成功后返回的消息
///
/// 消息内容
public MessageAttribute(string message)
{
Message = message;
}
public string Message { get; set; }
}
}