Files
simapi-net/Attributes/SynapseEventAttribute.cs
T
2024-07-26 08:11:21 +08:00

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;
}