using System; namespace AI.AgentIntegration { [AttributeUsage(AttributeTargets.Method, Inherited = false)] public class ActionHandlerAttribute : Attribute { public AppActionType ActionType { get; } public ActionHandlerAttribute(AppActionType actionType) { ActionType = actionType; } } }