16 lines
355 B
C#
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;
|
|
}
|
|
}
|