14 lines
346 B
C#
14 lines
346 B
C#
namespace StructureHelperCommon.Models.Shapes
|
|
{
|
|
/// <inheritdoc />
|
|
public class RectangleShape : IRectangleShape
|
|
{
|
|
/// <inheritdoc />
|
|
public double Width { get; set; }
|
|
/// <inheritdoc />
|
|
public double Height { get; set; }
|
|
/// <inheritdoc />
|
|
public double Angle { get; set; }
|
|
}
|
|
}
|