using System; using System.Collections.Generic; using System.Text; namespace Apewer.Web { /// 定义 API 响应模型。 public interface IApiModel { /// 输出。 void Output(ApiContext context); } }