Add project files.

This commit is contained in:
2026-01-19 15:48:56 +05:30
parent b41d842114
commit 703c08022b
17 changed files with 575 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using Microsoft.OpenApi;
namespace SampleApplication.Entities
{
public class ShapeInput
{
public int Id { get; set; }
public ShapeType Type { get; set; }
public double[] Dimensions { get; set; }
}
}