14 lines
279 B
C#
14 lines
279 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ViewComponents
|
|
{
|
|
public class PayOkViewComponent : ViewComponent
|
|
{
|
|
public async Task<IViewComponentResult> InvokeAsync()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|