14 lines
371 B
C#
14 lines
371 B
C#
|
|
using Microsoft.AspNetCore.Authorization;
|
|||
|
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
|
using QYZH.InteractiveMagazine.Models.Enum;
|
|||
|
|
|
|||
|
|
namespace QYZH.InteractiveMagazine.WebApi.Controllers.SDK
|
|||
|
|
{
|
|||
|
|
[Route("api/sdk/[controller]")]
|
|||
|
|
[ApiExplorerSettings(GroupName = nameof(ApiVersionEnum.SDK))]
|
|||
|
|
[AllowAnonymous]
|
|||
|
|
public class SDKBaseController : BaseController
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|