Files
StructureHelper/StructureHelperCommon/Models/Shapes/IRectangleShape.cs
Evgeny Redikultsev d3a1992f4d Add calculators saving
2024-10-19 20:32:25 +05:00

15 lines
341 B
C#

namespace StructureHelperCommon.Models.Shapes
{
public interface IRectangleShape : IShape
{
/// <summary>
/// Width of rectangle, m
/// </summary>
double Width { get; set; }
/// <summary>
/// Height of rectangle, m
/// </summary>
double Height { get; set; }
}
}