Files
webdoorcreator/WebDoorCreator.Data/DTO/EdgesDto.cs
T
zaccaria.majid 118c32c7c5 gesptione yal
2023-04-17 15:22:39 +02:00

16 lines
355 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebDoorCreator.Data.DTO
{
public class EdgesDto
{
public string type { get; set; } = "BV";
public string machining { get; set; } = "ON";
public double overmaterial { get; set; } = 0.1;
}
}