tbf/SchematicDrawing/IDrawingItemWithSetpoint.cs

15 lines
348 B
C#

///
/// Copyright (c) 2020 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; set; }
Config.Unit SetpUnits { get; set; }
}
}