using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace LotteryWebApp.Components { public class FooterOutsideModel { } public class FooterOutside : ViewComponent { public async Task InvokeAsync(String url) { FooterOutsideModel model = new FooterOutsideModel(); return View("FooterOutside", model); } } }