using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebDoorCreator.Data.DTO
{
///
/// Serialized door data for cost evaluation
///
[Serializable]
public class DoorCostingDTO
{
public int DoorId { get; set; } = 0;
public int Quantity { get; set; } = 1;
public double EstimatedWorkTime { get; set; } = 0;
public Dictionary> BOMList { get; set; }= new Dictionary>();
}
}