View primitives was fixed
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
namespace StructureHelperCommon.Models.Shapes
|
||||
{
|
||||
public interface IPoint : IShape
|
||||
public interface IPointShape : IShape
|
||||
{
|
||||
double Area { get; set; }
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace StructureHelperCommon.Models.Shapes
|
||||
{
|
||||
public class PointShape : IPoint
|
||||
public class PointShape : IPointShape
|
||||
{
|
||||
public double Area { get; set; }
|
||||
}
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
<Compile Include="Models\Shapes\ICenterShape.cs" />
|
||||
<Compile Include="Models\Shapes\ICircle.cs" />
|
||||
<Compile Include="Models\Shapes\ILineShape.cs" />
|
||||
<Compile Include="Models\Shapes\IPoint.cs" />
|
||||
<Compile Include="Models\Shapes\IPointShape.cs" />
|
||||
<Compile Include="Models\Shapes\IRectangleShape.cs" />
|
||||
<Compile Include="Models\Shapes\IShape.cs" />
|
||||
<Compile Include="Models\Shapes\LineShape.cs" />
|
||||
|
||||
Reference in New Issue
Block a user