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