15 lines
351 B
C#
15 lines
351 B
C#
using StructureHelperCommon.Models.Shapes;
|
|
using StructureHelperLogics.Models.Primitives;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Primitives
|
|
{
|
|
public interface IPointPrimitive : INdmPrimitive, IPointShape
|
|
{
|
|
}
|
|
}
|