Files
Backend-Api/ServiceHost/BaseControllers/GeneralBaseController.cs

13 lines
255 B
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace ServiceHost.Api.BaseControllers;
[ApiExplorerSettings(GroupName = "General")]
[Route("api/[controller]")]
public class GeneralBaseController:ControllerBase
{
}