1
0
mirror of https://github.com/akpaevj/onecmonitor.git synced 2026-06-19 22:59:58 +02:00
Files
onecmonitor/onecmonitor-server/ViewComponents/TrueFalse.cs
T
akpaev.e cd9542bd79 init
2025-03-29 01:33:55 +03:00

9 lines
196 B
C#

using Microsoft.AspNetCore.Mvc;
namespace OnecMonitor.Server.ViewComponents;
public class TrueFalse : ViewComponent
{
public IViewComponentResult Invoke(bool value)
=> View(value);
}