namespace StructureHelperCommon.Models.Shapes { public interface IPointShape : IShape { double Area { get; set; } } }