Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.WebCore/AttributeExtend/LogAttribute.cs

23 lines
623 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc.Filters;
using Microsoft.IdentityModel.JsonWebTokens;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Yi.Framework.Common.Const;
using Yi.Framework.Common.Enum;
namespace Yi.Framework.WebCore.AttributeExtend
{
[AttributeUsage(AttributeTargets.Method)]
public class LogAttribute : Attribute
{
private OperationEnum OperationType { get; set; }
public LogAttribute(OperationEnum operationType)
{
this.OperationType = operationType;
}
}
}