mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 09:06:41 +02:00
12 lines
321 B
C#
12 lines
321 B
C#
using System;
|
|
|
|
using YesNt.Interpreter.Enums;
|
|
|
|
namespace YesNt.Interpreter.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
public class StaticStatementAttribute : Attribute
|
|
{
|
|
public bool ExecuteInSearchMode { get; set; }
|
|
public Priority Priority { get; set; } = Priority.Normal;
|
|
} |