using System.Threading.Tasks; using Microsoft.AspNetCore.Http; namespace AspNetCoreDefaultHost.Pages { public interface IPage { Task ProcessRequestAsync(HttpContext context); } }