Files
constructdemo/ConstructorAppUI/ViewComponents/AdminLayoutComponents/_AdminLayoutFooterPartialComponent.cs
2025-05-01 15:18:30 +03:00

13 lines
276 B
C#

using Microsoft.AspNetCore.Mvc;
namespace ConstructorAppUI.ViewComponents.AdminLayoutComponents
{
public class _AdminLayoutFooterPartialComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}
}