tbf/SchematicDrawing/IDrawingItemWithSetpoint.cs
2021-06-18 15:35:46 +02:00

16 lines
343 B
C#

///
/// Copyright (c) 2020-2021 Sensus Slovensko a.s.
///
namespace SchematicDrawing
{
public interface IDrawingItemWithSetpoint : IDrawingItem
{
int SetpX { get; set; }
int SetpY { get; set; }
Orient SetpOrient { get; set; }
string SetpFormat { get; }
Common.Unit SetpUnit { get; }
}
}