You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-19 22:59:58 +02:00
9 lines
196 B
C#
9 lines
196 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace OnecMonitor.Server.ViewComponents;
|
|
|
|
public class TrueFalse : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke(bool value)
|
|
=> View(value);
|
|
} |