23 lines
571 B
C#
23 lines
571 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 int Quantity { get; set; } = 1;
|
|
|
|
public double EstimatedWorkTime { get; set; } = 0;
|
|
|
|
public Dictionary<string, List<string>> BOMList { get; set; }= new Dictionary<string, List<string>>();
|
|
}
|
|
}
|