13 lines
204 B
C#
13 lines
204 B
C#
using System.Drawing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AGVControl.Models
|
|
{
|
|
public enum BranchDirection
|
|
{
|
|
Left,
|
|
Straight,
|
|
Right
|
|
}
|
|
} |