Interface for array was created

This commit is contained in:
ear
2023-10-30 10:14:02 +05:00
parent 78ee3a8b13
commit 195624f2ed
3 changed files with 164 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using StructureHelperCommon.Models.Shapes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.Arrays
{
public interface IGeometryArrayMember
{
IPoint2D Center { get; set; }
double RotationAngle { get; set; }
}
}