using System; namespace StructureHelperCommon.Models.Shapes { /// public class RectangleShape : IRectangleShape { public Guid Id { get; } /// public double Width { get; set; } /// public double Height { get; set; } /// public double Angle { get; set; } public RectangleShape(Guid id) { Id = id; } public RectangleShape() : this (Guid.NewGuid()) { } } }