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