12 lines
337 B
C#
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; }
|
|
}
|