| 1234567891011121314151617181920 |
- 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<IViewComponentResult> InvokeAsync(String url)
- {
- FooterOutsideModel model = new FooterOutsideModel();
- return View("FooterOutside", model);
- }
- }
- }
|