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