using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.RestApi.Dialogflow { #if DIALOGFLOW /// /// The /entities endpoint is used to create, retrieve, update, and delete developer-defined entity objects. /// [Authorize] [Route("v1/[controller]")] public class EntitiesController : ControllerBase { [HttpGet] public IEnumerable All() { return new List(); } } #endif }