20 lines
510 B
C#
20 lines
510 B
C#
using Nancy.Swagger;
|
|
using Nancy.Swagger.Services;
|
|
using 电子展板.Models;
|
|
using 电子展板.Utility.Swagger;
|
|
|
|
namespace 电子展板.WebModule.ModelMetadata
|
|
{
|
|
public class RetValueDataProvider : ISwaggerModelDataProvider
|
|
{
|
|
/// <summary>
|
|
/// 使用自定义特性注解完成配置
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public SwaggerModelData GetModelData()
|
|
{
|
|
return SwaggerModelDataUtils.GetModelData<RetValue>();
|
|
}
|
|
}
|
|
}
|