Files
simapi-net/Attributes/SynapseEventAttribute.cs
T

14 lines
249 B
C#
Raw Permalink Normal View History

2023-10-20 12:33:18 +08:00
using System;
namespace SimApi.Attributes;
[AttributeUsage(AttributeTargets.Method)]
public class SynapseEventAttribute : Attribute
{
public string Name { get; }
public SynapseEventAttribute(string name)
{
Name = name;
}
}