11 lines
178 B
C#
11 lines
178 B
C#
///
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|
///
|
|
namespace SchematicDrawing
|
|
{
|
|
public interface IDrawingItCmpnt
|
|
{
|
|
IDrawingItem DrawingItem { get; }
|
|
}
|
|
}
|