using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebDoorCreator.Data.DTO
{
public class CostingDTO
{
///
/// Order's UID
///
public int OrderId { get; set; }
///
/// Dictionary of evaluated unit cost for each Door in Order
///
public Dictionary DoorUnitCost { get; set; } = new Dictionary();
}
}