blob: b4a85f92a7118bf825ab69247ff33ae67f31ae15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.MachineStudio.Technician.Navigation
{
/// <summary>
/// Represents the available technician module views.
/// </summary>
public enum TechNavigationView
{
Overview,
Motors,
Sensors,
}
}
|