15 lines
297 B
C#
15 lines
297 B
C#
///
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|
///
|
|
using System.Collections.Generic;
|
|
namespace SchematicDrawing
|
|
{
|
|
public interface IRouteBasedDrawingItem : IDrawingItem
|
|
{
|
|
int BitNr { get; }
|
|
bool Inverted { get; }
|
|
|
|
IList<GEdge> EdgesToSet { get; set; }
|
|
}
|
|
}
|