Восстановил проект Logic

This commit is contained in:
Evgeny Redikultsev
2022-06-20 18:44:24 +05:00
parent 0695dfb917
commit 068b865a89
13 changed files with 235 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperLogics.Data.Shapes
{
/// <inheritdoc />
public class Center : ICenter
{
/// <inheritdoc />
public double CenterX { get; set; }
/// <inheritdoc />
public double CenterY { get; set; }
}
}