18 lines
402 B
C#
18 lines
402 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace StructureHelperLogics.Data.Shapes
|
|
{
|
|
/// <inheritdoc />
|
|
public class Rectangle : IRectangle
|
|
{
|
|
/// <inheritdoc />
|
|
public double Width { get; set; }
|
|
/// <inheritdoc />
|
|
public double Height { get; set; }
|
|
/// <inheritdoc />
|
|
public double Angle { get; set; }
|
|
}
|
|
}
|