19 lines
313 B
C#
19 lines
313 B
C#
using System;
|
|
|
|
namespace SimApi.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class SynapseRpcAttribute : Attribute
|
|
{
|
|
public string? Name { get; }
|
|
|
|
public SynapseRpcAttribute()
|
|
{
|
|
Name = null;
|
|
}
|
|
|
|
public SynapseRpcAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
} |