7 lines
195 B
C#
7 lines
195 B
C#
namespace Lagrange.OneBot.Core.Operation;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
|
|
public class OperationAttribute(string api) : Attribute
|
|
{
|
|
public string Api => api;
|
|
} |