mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 22:43:25 +08:00
42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
/***********************************************************************
|
|
* Project: CoreCms.Net *
|
|
* Web: https://CoreCms.Net *
|
|
* ProjectName: 核心内容管理系统 *
|
|
* Author: 大灰灰 *
|
|
* Email: JianWeie@163.com *
|
|
* Versions: 1.0 *
|
|
* CreateTime: 2020-02-02 18:53:03
|
|
* NameSpace: CoreCms.Net.Framework.Swagger
|
|
* FileName: CustomApiVersion
|
|
* ClassDescription:
|
|
***********************************************************************/
|
|
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CoreCms.Net.Swagger
|
|
{
|
|
/// <summary>
|
|
/// 自定义版本
|
|
/// </summary>
|
|
public class CustomApiVersion
|
|
{
|
|
/// <summary>
|
|
/// Api接口版本 自定义
|
|
/// </summary>
|
|
public enum ApiVersions
|
|
{
|
|
/// <summary>
|
|
/// V1 版本
|
|
/// </summary>
|
|
V1 = 1,
|
|
/// <summary>
|
|
/// V2 版本
|
|
/// </summary>
|
|
V2 = 2,
|
|
}
|
|
}
|
|
}
|