13 lines
273 B
C#
13 lines
273 B
C#
///
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|
///
|
|
namespace SchematicDrawing
|
|
{
|
|
public interface IDrawingItCmpntWithSetpoint : IDrawingItCmpnt
|
|
{
|
|
double SetpointVal { get; set; }
|
|
void IncreaseSetpoint();
|
|
void DecreaseSetpoint();
|
|
}
|
|
}
|