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