tbf/SchematicDrawing/IDrawingItemWithSetpoint.cs

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; }
Config.Unit SetpUnit { get; }
}
}