14 lines
249 B
C#
14 lines
249 B
C#
using System;
|
|
|
|
namespace SimApi.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class SynapseEventAttribute : Attribute
|
|
{
|
|
public string Name { get; }
|
|
|
|
public SynapseEventAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
} |