22 lines
522 B
C#
22 lines
522 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebDoorCreator.Data.DTO
|
|
{
|
|
public class CostingDTO
|
|
{
|
|
/// <summary>
|
|
/// Order's UID
|
|
/// </summary>
|
|
public int OrderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Dictionary of evaluated unit cost for each Door in Order
|
|
/// </summary>
|
|
public Dictionary<int, double> DoorUnitCost { get; set; } = new Dictionary<int, double>();
|
|
}
|
|
}
|