RobotNet/RobotNet.WebApp/Robots/Components/Monitoring/MonitorToolbar.razor.cs
2025-10-15 15:15:53 +07:00

12 lines
337 B
C#

namespace RobotNet.WebApp.Robots.Components.Monitoring;
public class MonitorToolBarModel
{
public bool ShowGrid { get; set; }
public bool ShowName { get; set; }
public bool ShowPath { get; set; }
public bool FocusRobot { get; set; }
public bool ShowLaser { get; set; }
public bool ShowElement { get; set; }
}