using Microsoft.OpenApi; namespace SampleApplication.Entities { public class ShapeInput { public int Id { get; set; } public ShapeType Type { get; set; } public double[] Dimensions { get; set; } } }