9 lines
188 B
C#
9 lines
188 B
C#
namespace Public
|
|
{
|
|
public interface IBillableApiHandler
|
|
{
|
|
/// <summary>执行 API 主逻辑</summary>
|
|
Task<object> ExecuteAsync(ApiCallContext context);
|
|
}
|
|
}
|