using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using YTManager; using YTManager.Models; namespace YTManager.Controllers { [Produces("application/json")] [Route("api_raw/Videos")] public class Private_Videos : Controller { private readonly MediaDB _context; public Private_Videos(MediaDB context) { _context = context; } // GET: api/Videos [HttpGet] public IEnumerable