18 lines
484 B
C#
18 lines
484 B
C#
using System;
|
|
|
|
namespace LeanCloud.Engine {
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
public class LCEngineFunctionAttribute : Attribute {
|
|
public string FunctionName {
|
|
get;
|
|
}
|
|
|
|
public LCEngineFunctionAttribute(string funcName) {
|
|
if (string.IsNullOrEmpty(funcName)) {
|
|
throw new ArgumentNullException(nameof(funcName));
|
|
}
|
|
FunctionName = funcName;
|
|
}
|
|
}
|
|
}
|