namespace StructureHelperCommon.Models.Shapes { /// /// Geomentry primitive of point /// public interface IPointShape : IShape { /// /// Area of point /// double Area { get; set; } } }