using System;
using System.Collections.Generic;
using System.Text;
namespace Admin.Core.Common
{
public class ActionAttribute : Attribute
{
///
/// 日志标题
///
public string Title { get; set; } = string.Empty;
///
/// 操作类型
///
public ActionType ActionType { get; set; } = ActionType.OTHER;
///
/// 日志Filter
///
///
///
public ActionAttribute(string title, ActionType type)
{
Title = title;
ActionType = type;
}
}
}