14 lines
241 B
C#
14 lines
241 B
C#
using Microsoft.OpenApi;
|
|
|
|
namespace SampleApplication.Entities
|
|
{
|
|
public class ShapeInput
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public ShapeType Type { get; set; }
|
|
|
|
public double[] Dimensions { get; set; }
|
|
}
|
|
}
|