using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Platform.Dialogflow.ViewModels;
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Dialogflow.Controllers
{
#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
}