add config store
This commit is contained in:
@@ -3,12 +3,7 @@ using System;
|
||||
namespace SimApi.Attributes;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
public class SynapseEventAttribute : Attribute
|
||||
public class SynapseEventAttribute(string? name = null) : Attribute
|
||||
{
|
||||
public string Name { get; }
|
||||
|
||||
public SynapseEventAttribute(string name)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
public string? Name { get; } = name;
|
||||
}
|
||||
Reference in New Issue
Block a user