26 lines
654 B
C#
26 lines
654 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebDoorCreator.Data.DTO
|
|
{
|
|
/// <summary>
|
|
/// Serialized door data for cost evaluation
|
|
/// </summary>
|
|
[Serializable]
|
|
public class DoorCostingDTO
|
|
{
|
|
public int DoorId { get; set; } = 0;
|
|
|
|
public double SizeX { get; set; } = 0;
|
|
public double SizeY { get; set; } = 0;
|
|
public double SizeZ { get; set; } = 0;
|
|
|
|
public double EstimatedWorkTime { get; set; } = 0;
|
|
|
|
public Dictionary<string, double> BOMList { get; set; }= new Dictionary<string, double>();
|
|
}
|
|
}
|