add config store

This commit is contained in:
2024-07-26 08:11:21 +08:00
parent 82f7e0fc00
commit 929ddaced3
21 changed files with 302 additions and 153 deletions
+2 -7
View File
@@ -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;
}