Initial commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace RobotNet10.FleetManager.Shared.Enums;
|
||||
|
||||
/// <summary>
|
||||
/// Navigation type for robot models
|
||||
/// </summary>
|
||||
public enum NavigationType
|
||||
{
|
||||
/// <summary>
|
||||
/// Differential drive navigation
|
||||
/// </summary>
|
||||
Differential = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Forklift navigation
|
||||
/// </summary>
|
||||
Forklift = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Omni-directional drive navigation
|
||||
/// </summary>
|
||||
OmniDrive = 2
|
||||
}
|
||||
Reference in New Issue
Block a user