using Bootstrap.DataAccess; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Linq; namespace Bootstrap.Admin.Controllers.Api { /// /// /// [Route("api/[controller]")] public class WSController : Controller { /// /// /// /// /// [HttpGet] public List Get() { return NotificationHelper.MessagePool.ToList(); } } }