17 lines
311 B
C#
17 lines
311 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AbazovViewComponents.LogicalComponents
|
|
{
|
|
public enum DiagramLegendEnum
|
|
{
|
|
TopLeft = 0,
|
|
TopRight = 1,
|
|
BottomRight = 2,
|
|
BottomLeft = 3,
|
|
}
|
|
}
|